找出所有大于100M的文件并展示出來

find / -size +100M -exec ls -lh {} \;



找出特定文件內大于200字節的文件并備份到另一個文件夾里去

find /opt/test -type f ?-size +200c -exec cp {} /opt/test/cp/ ? \;