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