17 lines
203 B
Bash
17 lines
203 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
trim() {
|
||
|
local input="${1}"
|
||
|
|
||
|
while [[ "${input}" == " "* ]]; do
|
||
|
input="${input## }"
|
||
|
done
|
||
|
|
||
|
while [[ "${input}" == *" " ]]; do
|
||
|
input="${input%% }"
|
||
|
done
|
||
|
|
||
|
echo "${input}"
|
||
|
}
|
||
|
|