您好,登錄后才能下訂單哦!
shell中怎么實現一個字符編碼轉換工具,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
#!/bin/bash
: << mark
轉碼工具,支持UTF-8轉GBK和GBK轉UTF-8
孔令飛@2012-05-07
mark
#set -x
scode="gbk"
dcode="utf-8"
function Usage()
{
cat << EOF
Usage: conv [OPTIONS] [DIR]
[-u] GBK to UTF-8
[-g] UTF-8 to GBK
EOF
exit 1
}
#將當前目錄下所有普通文件進行轉碼 GBK to UTF-8
function g2u()
{
local dir=$1
printf "Convering $dir ......"
for file in $(ls $dir)
do
file="$dir/$file"
if [ -f $file ];then
coding=$(file -b $file | cut -d ' ' -f1)
#進行轉碼
if [ "$coding" = "ISO-8859" ];then
local tmpfile=$(mktemp)
Fright=$(stat -c %a $file)
Fuser=$(stat -c %U $file)
Fgro=$(stat -c %G $file)
iconv -f $scode -t $dcode $file > $tmpfile || Usage
mv $tmpfile $file &&
chmod $Fright $file
chown $Fuser:$Fgrp $file
fi
fi
done
printf " done\n"
}
function u2g()
{
local dir=$1
printf "Convering $dir ......"
for file in $(ls $dir)
do
file="$dir/$file"
if [ -f $file ];then
coding=$(file -b $file |cut -d ' ' -f1)
#進行轉碼
if [ "$coding" = "UTF-8" ];then
local tmpfile=$(mktemp)
Fright=$(stat -c %a $file)
Fuser=$(stat -c %U $file)
Fgro=$(stat -c %G $file)
iconv -f $dcode -t $scode $file > $tmpfile || Usage
mv $tmpfile $file &&
chmod $Fright $file
chown $Fuser:$Fgrp $file
fi
fi
done
printf " done\n"
}
[ $# -ne 2 ] && Usage
while getopts ug opt
do
case $opt in
u) echo "Convert gbk coding to utf-8 ...."
for dir in $(find $2 -type d)
do
g2u $dir
done
g) echo "Convert utf-8 coding to gbk ...."
for dir in $(find $2 -type d)
do
u2g $dir
done
*) Usage
exit 1
esac
done
exit 0
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。