Home » Questions » Computers [ Ask a new question ]

Read EDIT Text Files On Linux

Read EDIT Text Files On Linux

I'm needing to read the Adam's Assembly Tutorials, that are old EDIT *.txt files, I'm on Linux and I need to read this files.

Asked by: Guest | Views: 371
Total answers/comments: 1
Guest [Entry]

"All editors can read plain text files. There is nothing unmodern in them. (All configuration files, all program source code, all websites, a lot of things are in plain text.)

If you want to see the characters as they were in DOS, use iconv to convert the character encoding to a ""more modern"" one, Unicode.

iconv -f cp437 -t utf-8 < file.txt > file.txt.new"