I am reading ebcdic format mainframe data as Unicode string for some reason. When I write that data after some transformation, I am in the need of corresponding ascii data.
Asked
Active
Viewed 613 times
1
-
Please add a snippet of what you are trying – Tae Oct 23 '17 at 19:57
1 Answers
0
Could you try this:
dd if="EBCDIC_FILE" of="ASCII_FILE" conv=ascii
"if" is the Input file, this case the EBCDIC file "of" is the Output file, this case the ascii file.

Javier Salas
- 1,064
- 5
- 15
- 38