<==============================================================================>
#find的一些方法
find ${findPath} -maxdepth 1 -regex ".*\.\(c\|h\)" -type f
#避开 .开头的隐藏文件
find ! -name ".?*" -type f
#find 可以对regex做查询 指定目录下查找指定文件名
find -name "Reporter_*" -type d| xargs -i find {} -regex ".*\.\(htm\|rtf\)" -type f | xargs -i cp {} DEST/
#这不是个好方法:
# find . \( -path .*/Input -o -path .*/Output -o -path .*/Current \) -prune -o -name "*.htm" -print
#这个比较好 避开某些目录查找文件 提高效率
find . \( -name Input -o -name Output -o -name Current \) -type d -prune -o -name "*.htm" -print
#find 以后 先替换匹配的模式 再在文件末尾追加tag
find + | xargs sed -i -e 's|\(.*\)\(\)|\1_DC\2|' -e '$ s|.*|&