1

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.

Christian Gollhardt
  • 16,510
  • 17
  • 74
  • 111

1 Answers1

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