[lang-ref] ( trim_last ) ( bash )
@test "trim last" {
# ${text%%+([[:space:]])}
shopt -s extglob
text=$'\n\t abc def\t \n '
trimmed="${text%%+([[:space:]])}"
[ "$trimmed" = $'\n\t abc def' ]
}
@test "trim last" {
# ${text%%+([[:space:]])}
shopt -s extglob
text=$'\n\t abc def\t \n '
trimmed="${text%%+([[:space:]])}"
[ "$trimmed" = $'\n\t abc def' ]
}