查找当前目录下前一天创建的压缩文件并删除
find ./ -ctime 1 -a -name "mysql-bin.00*" | xargs rm -rf
根据文件内容查找文件
find ./ -name '*.php' |xargs grep 'password'