How to remove all the carriage returns /r from a file in Unix?
Source code viewertr -d '\r' < input_file.txt > output_file.txtProgramming Language: Bash