[Ubuntu]解决文本及目录名乱码问题
# 文本内容
iconv -f gb18030 -t utf-8 *.txt
# 文件夹名称
# 第一步 首先安装7zip和convmv(如果之前没有安装的话)
sudo apt-get install p7zip-full convmv
# 第二步 假设zip文件名为abc.zip,那么
LANG=C 7z x abc.zip
convmv -f cp936 -t utf8 -r --notest *
find *.txt -exec sh -c "iconv -f GB18030 -t UTF8 {} > {}.txt" \
#!/bin/sh
find /sdcard/UCDownloads/cache/SubRes/240/ gif -print | grep .gif | tee /sdcard/ucads240.log
find ./* txt -print | grep .txt | tee ./iconvlog.txt
cat ./iconvlog.txt | while read line
do
iconv -f gb18030 -t utf-8 $line $line
done