从windows环境下编写的文档传到主机上如何转化为unicode呢?以下提供两种方法:
在windows环境上编辑ftp到主机上后,将big5或gb转换为unicode可用以下两个指令: 1)cat aimi100.4gl |b5tou8 >aimi100.u8 将aimi100.4gl繁体转化为unicode文件aimi100.u8 cat aimi100.4gl |gbtou8 >aimi100.u8 将aimi100.4gl简体转化为unicode文件aimi100.u8 注:可用echo $LANG查看当前环境语言别 2)或用iconv指令: iconv -f BIG-5 -t UTF-8 aimi100.4gl >aimi100.u8 将aimi100.4gl繁体转化为unicode文件aimi100.u8 iconv -f GB2312 -t UTF-8 aimi100.4gl >aimi100.u8 将aimi100.4gl简体转化为unicode文件aimi100.u8 -f表示from -t表示to 我的建议是最好还是用vi编辑器 !!! |
|
最新喜欢:Perry |