rwxrob-dot/snippets/bash/trim
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

7 lines
95 B
Plaintext

_trim() {
local it="${1#"${1%%[![:space:]]*}"}"
echo -e "${it%"${it##*[![:space:]]}"}"
}