linux批量修改文件名|linux下批量删除utf8 bom的实现方法

时间:2021-07-26  来源:linux  阅读:

低版本的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批量修改文件名|linux下批量删除utf8 bom的实现方法

http://m.bbyears.com/caozuoxitong/132039.html

推荐访问:linux批量删除文件
相关阅读 猜你喜欢
本类排行 本类最新