低版本的gcc编译包含bom的文件会报错
xxx.cpp:1: error: stray ‘\357' in program
xxx.cpp:1: error: stray ‘\273' in program
xxx.cpp:1: error: stray ‘\277' in program
批量删除之
grep -rIlo $'^\xEF\xBB\xBF' . | xargs sed --in-place -e 's/\xef\xbb\xbf//'
在文件末尾增加空白行
find . -name "*.h" | xargs sed --in-place -e '${G}'
以上这篇linux下批量删除utf8 bom的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:- Linux 下rename 命令的用法
- 详解linux下批量替换文件内容的三种方法(perl,sed,shell)
- Linux下批量修改文件编码
- 在Linux中批量建立用户的shell
- linux中批量修改文件名的脚本代码
- 详解Linux批量更改文件后缀名
- Linux中用rename命令批量替换文件名方法实例