Files
dotify/src/lib/helpers/trim.sh
2013-10-03 23:42:20 +01:00

14 lines
242 B
Bash

# Trim leading and trailing whitespace.
#
# Example:
#
# $ trim " foo bar "
# foo bar
#
trim() {
local string="$@"
string="${string#"${string%%[![:space:]]*}"}"
string="${string%"${string##*[![:space:]]}"}"
echo -n "$string"
}