找出所有大于100M的文件并展示出来
find / -size +100M -exec ls -lh {} \;
找出特定文件内大于200字节的文件并备份到另一个文件夹里去
find /opt/test -type f -size +200c -exec cp {} /opt/test/cp/ \;
时间: 2024-10-30 15:46:16
找出所有大于100M的文件并展示出来
find / -size +100M -exec ls -lh {} \;
找出特定文件内大于200字节的文件并备份到另一个文件夹里去
find /opt/test -type f -size +200c -exec cp {} /opt/test/cp/ \;