Skip to content

Instantly share code, notes, and snippets.

@dustinbutterworth
Created September 17, 2020 17:41
Show Gist options
  • Save dustinbutterworth/74dcb73442b74d49923c0cffb0af28e0 to your computer and use it in GitHub Desktop.
Save dustinbutterworth/74dcb73442b74d49923c0cffb0af28e0 to your computer and use it in GitHub Desktop.
remove double spacing from a file
# 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