Converting encoding from unknown-8bit to us-ascii not supported
You could use cat -v
, e.g.,
cat -v file.txt > file1.txt
On most platforms, that will give an ASCII file.
You could use cat -v
, e.g.,
cat -v file.txt > file1.txt
On most platforms, that will give an ASCII file.