shell中怎么實現(xiàn)一個字符編碼轉(zhuǎn)換工具,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
專注于為中小企業(yè)提供網(wǎng)站制作、網(wǎng)站設(shè)計服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)鹽津免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。#!/bin/bash
: << mark
轉(zhuǎn)碼工具,支持UTF-8轉(zhuǎn)GBK和GBK轉(zhuǎn)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
}
#將當前目錄下所有普通文件進行轉(zhuǎn)碼 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)
#進行轉(zhuǎn)碼
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)
#進行轉(zhuǎn)碼
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
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。