find  /etc -size +200k -exec cp {} /tmp/tmp/  \;
/etc 是指查找的目录, -seze +200k 指定查找的文件大于200k,-exec cp {} /tmp/tmp/  \;对查找的目标文件执行cp操作。{}代表查找到文件。
 
查找几天以前的目录文件,查找当前目录,其中忽略db及tmp目录
 
 find . -maxdepth 1 -mindepth 1 \( -path ./db -o -path ./tmp \) -prune -o -mtime +1  ! -name ".*" -type d -print