Command line trim()
Often I'll need to trim (remove leading and trailing whitespace) from command line output. The easiest way I've found is to pipe to a one line Perl script
my_messy_command.sh | perl -pE 's/^\s+|\s+$//'
This runs a replace regexp on the input, trims extraneous whitespace and outputs the cleaner version.