拖尾大型机上需要转换的文件

拖尾大型机上需要转换的文件

我想在需要 ASCII 到 EBCDIC 转换的大型机 LPAR 上的 Unix 系统服务中跟踪日志文件?

答案1

tail /path/to/input | dd conv=ebcdic of=/dev/stdout

或者,写入文件:

tail /path/to/input | dd conv=ebcdic of=/path/to/output

要转换其他方式(EBCDIC 到 ASCII),请使用conv=ascii.

答案2

使用iconv

tail /path/to/file | iconv -f ISO8859-1 -t IBM-1047

相关内容