Find和mv的结合使用:查找文件,移动到某个目录
跳到导航
跳到搜索
把当前目录下面的file(不包括目录),移动到/opt/shell find . -type f -exec mv {} /opt/shell \; find . -type f | xargs -I '{}' mv {} /opt/shell 30天的的文件 mv走 find ./ -type f -mtime +29 -exec mv {} /data1/bak
http://blog.csdn.net/hardwin/article/details/7711635