ls -lh | grep '^-' | wc -l
举例:查找7天内的文件,复制到另一个tmp目录 find ./ -mtime -7 -exec cp {} ../tmp/ \;
find ./ -mtime -7 -exec cp {} ../tmp/ \;