当前位置: 技术问答>linux和unix
iconv命令处理固定文件夹下的所有文件
来源: 互联网 发布时间:2016-10-21
本文导语: iconv -f euc-jp -t utf8 /test/new/file 如何写处理/test/new/file 文件夹下的所有文件啊 | /test/new/file/* | 自己写个循环处理呢 for f in /test/new/* do iconv -f euc-jp -t utf8 $f done
iconv -f euc-jp -t utf8 /test/new/file
如何写处理/test/new/file 文件夹下的所有文件啊
如何写处理/test/new/file 文件夹下的所有文件啊
|
/test/new/file/*
|
自己写个循环处理呢
for f in /test/new/*
do
iconv -f euc-jp -t utf8 $f
done
for f in /test/new/*
do
iconv -f euc-jp -t utf8 $f
done