Created
September 17, 2020 17:41
-
-
Save dustinbutterworth/74dcb73442b74d49923c0cffb0af28e0 to your computer and use it in GitHub Desktop.
remove double spacing from a file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # remove double spacing from a file | |
| tr -s '\n' < ${input_file} > ${output_file} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment