使用ssh删除目录中的php文件

时间:2013-07-27 02:32:48

标签: ssh

我需要一个ssh命令来通过ssh在一个文件夹中删除日志文件。我在我的服务器中有超过百万的日志进入一个文件夹,但里面有几个文件夹,我只想删除名称如此示例的日志文件:

aw-anime.php.2481
aw-anime.php.2485
aw-anime.php.2446

等等。

2 个答案:

答案 0 :(得分:0)

ssh [options] user@hostname rm [options] /path/to/folder/with/logs/aw-anime.php.*

如果有适当的选择和路径,这应该做你想要的。

答案 1 :(得分:0)

如果for =文件夹

cd dir
find ./ -name 'aw-anime.php.*' | xargs rm