作者:大CC 原文:http://www.cnblogs.com/me115/p/3427319.html
本文将介绍linux下使用Shell处理文本时最常用的工具:
find、grep、xargs、sort、uniq、tr、cut、paste、wc、sed、awk;
提供的例子和参数都是最常用和最为实用的;
对shell脚本使用的原则是命令单行书写,尽量不要超过2行;
如果有更为复杂的任务需求,还是考虑Python吧;
find 文件查找
find . ( -name "*.txt" -o -name "*.pdf" ) -print
find . -regex ".*(.txt|.pdf)$"
find . ! -name "*.txt" -print
find . -maxdepth 1 -type f
定制搜索
find . -type d -print //只列出所有目录
find . -atime 7 -type f -print
find . -type f -size +2k
find . -type f -perm 644 -print //找具有可执行权限的所有文件
find . -type f -user weber -print// 找用户weber所拥有的文件
找到后的后续动作
find . -type f -name "*.swp" -delete
find . -type f -user root -exec chown weber {} ; //将当前目录下的所有权变更为weber
find . -type f -mtime +10 -name "*.txt" -exec cp {} OLD ;
-exec ./commands.sh {} ;
-print的定界符
默认使用'n'作为文件的定界符;
-print0 使用'