【发布时间】:2013-06-19 08:49:37
【问题描述】:
我需要找到文件大小为 1.905 字节的所有 index.php 文件。 我有超过 700 多个网站,其中 2/5 被黑客入侵,并且 index.php 具有这种文件大小。 请帮帮我!!!
【问题讨论】:
-
您对此进行过研究吗?你的问题究竟是什么? “man find”命令将是一个很好的起点..
我需要找到文件大小为 1.905 字节的所有 index.php 文件。 我有超过 700 多个网站,其中 2/5 被黑客入侵,并且 index.php 具有这种文件大小。 请帮帮我!!!
【问题讨论】:
要在/var/www 下查找名称为 index.php 且大小正好为 1905 字节的文件:
find /var/www -name index.php -size 1905c
【讨论】: