批量转换文件内码的脚本

前阵子写的小脚本:

 

convall.sh

 

***************************

#!/bin/bash

 

for i in `find ./ -type f`;
do
  echo $i;
  iconv -f utf8 -t gb18030 $i > tmpfile; 
  cp tmpfile $i;
  rm tmpfile;
done

 

***************************

你可能感兴趣的:(批量转换文件内码的脚本)