问题
i need to find all index.php files with file size of 1.905 bytes. I have over 700+ websites and 2/5 of them are hacked and have index.php with this filesize. Please help me!!!
回答1:
To find files under /var/www
with name index.php and size of exactly 1905 bytes:
find /var/www -name index.php -size 1905c
来源:https://stackoverflow.com/questions/17186839/find-files-with-certain-filesize-in-linux