如何删除站点服务器中 /temp 中的特定文件?
How can you delete specific files in /temp in site server?
我的站点遇到内部服务器错误、网站关闭,主要原因是 /temp
目录已满。该支持为我们提供了一个大小超过 1 GB 的大型临时文件列表。有没有办法删除 /temp
中的特定文件?
ls -lah /tmp
我已使用此代码转到我的 /temp
文件。如何删除其中的特定文件?
将目录更改为 tmp - cd /tmp
并删除特定文件 - rm -f specific.file.name
你可以使用 find
:
find /temp -size +1G -delete
意思如下:
/temp : location of the search (subfolders are searched too)
-size +1G : the size should be larger than 1Gb
-delete : once such a file is found, delete it.
我的站点遇到内部服务器错误、网站关闭,主要原因是 /temp
目录已满。该支持为我们提供了一个大小超过 1 GB 的大型临时文件列表。有没有办法删除 /temp
中的特定文件?
ls -lah /tmp
我已使用此代码转到我的 /temp
文件。如何删除其中的特定文件?
将目录更改为 tmp - cd /tmp
并删除特定文件 - rm -f specific.file.name
你可以使用 find
:
find /temp -size +1G -delete
意思如下:
/temp : location of the search (subfolders are searched too)
-size +1G : the size should be larger than 1Gb
-delete : once such a file is found, delete it.