This command will with trim all the characters in CUTSET from the (beginning and end) of STRING.
string trim "-" "--people--"
Would return people
NOTE: To read content from standard input we use the -i -
option.
echo "--people--" | string -i - trim "-"
Would return people