linux下批量删除utf8 bom的实现方法

上传:u60912 浏览: 15 推荐: 0 文件:PDF 大小:29.74KB 上传时间:2021-01-30 12:37:13 版权申诉
低版本的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下批
上传资源
用户评论