Bash Leerzeichen Entfernen

$ echo "text text" | sed 's/ //'
texttext
$ echo "text text" | sed 's/^ //'
text text
AttractivePenguin