Skip to content

Instantly share code, notes, and snippets.

@thingsiplay
Last active May 23, 2024 15:49
Show Gist options
  • Save thingsiplay/6f5fdf72ac105f852f92c726ebb99f28 to your computer and use it in GitHub Desktop.
Save thingsiplay/6f5fdf72ac105f852f92c726ebb99f28 to your computer and use it in GitHub Desktop.
Remove surrounding whitespace from stdin.
#!/bin/sh
# echo -e ' \thello world ' | trim
sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'
alias trim="sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment