首先查找看看有哪些文件包含BOM
find . -type f -print0 | xargs -0r awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}'
然后执行去除动作
find . -type f -exec sed -i -e '1s/^\xEF\xBB\xBF//' {} \;
2022-10-28 11:13:18
首先查找看看有哪些文件包含BOM
find . -type f -print0 | xargs -0r awk '/^\xEF\xBB\xBF/ {print FILENAME} {nextfile}'
然后执行去除动作
find . -type f -exec sed -i -e '1s/^\xEF\xBB\xBF//' {} \;
下一篇:你学会UI设计了吗?