Skip to content

Instantly share code, notes, and snippets.

@rhydlewis
Created July 17, 2015 12:00
Show Gist options
  • Save rhydlewis/c23e129e1972bd42916f to your computer and use it in GitHub Desktop.
Save rhydlewis/c23e129e1972bd42916f to your computer and use it in GitHub Desktop.
useful-snippets
data=$(pbpaste)
if [ $(echo "$data" | wc -l) -gt 1 ];
then
change=${data//
/ }
else
change=${data// /
}
fi
echo -e "$change" | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment