Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Created January 10, 2014 15:27
Show Gist options
  • Select an option

  • Save coderofsalvation/8356352 to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/8356352 to your computer and use it in GitHub Desktop.
removes double spaces (handy when using 'cut')
# removes double spaces (handy when using 'cut')
# usage: echo " 1 foo bar" | removedoublespaces (outputs: " 1 foo bar")
removedoublespaces(){
cat - | tr -s " "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment