标签:shell
找出所有大于100M的文件并展示出来
find / -size +100M -exec ls -lh {} \;
找出特定文件内大于200字节的文件并备份到另一个文件夹里去
find /opt/test -type f -size +200c -exec cp {} /opt/test/cp/ \;
shell 查出文件并复制到另一个文件夹
原文地址:http://406647516.blog.51cto.com/2249087/1875417