utf-8 bom 去除的shell脚本

http://blog.chinaunix.net/uid-8747186-id-4421013.html

1)只查找

find . -type f -exec  grep  -HIl $’^\xEF\xBB\xBF’  {} \;

2)sed处理掉bom

find . -type f -name “*.php” -exec grep -HIl $’^\xEF\xBB\xBF’ {} \; | xargs sed -i ‘s/\xEF\xBB\xBF//’

find-grep-sed-utf8bom

发表评论

邮箱地址不会被公开。 必填项已用*标注