How to decode file from cp866 to utf on Mac
Task: decode text files in bash from cp866 to uff
Implementation:
Use next command:
iconv -f cp866 -t utf-8 < file.txt > new_file.txt
Done.
Scientific Algorithms and Analytics
Task: decode text files in bash from cp866 to uff
Implementation:
Use next command:
iconv -f cp866 -t utf-8 < file.txt > new_file.txt
Done.