美文网首页
编码转shell脚本

编码转shell脚本

作者: 255888 | 来源:发表于2020-04-29 20:07 被阅读0次

使用 iconv 把GBK 转换为 UTF-8

#!/bin/bash

for file in `find . -name '*.sql'`; do
  echo "$file"
  iconv -f GBK  -t UTF-8 "$file" > tmp.sql
  cat tmp.sql > "$file" 

done

使用 iconv 把UTF-8转换为 GBK

#!/bin/bash

for file in `find . -name '*.sql'`; do
  echo "$file"
  iconv -f UTF-8  -t  GBK  "$file" > tmp.sql
  cat tmp.sql > "$file" 

done

相关文章

网友评论

      本文标题:编码转shell脚本

      本文链接:https://www.haomeiwen.com/subject/abanwhtx.html