Bisher schnellste Lösung für trim in einer Bash
bearbeitet von U. NixNoch sehr viel schneller:
~~~bash
#!/bin/bash
# $home/bin/trim.sh
## USAGE:
# echo -e "\t \thallo\n \twelt\n Hallo Welt" | trim.sh
# program | trim.sh
# trim.sh < file
while read str; do
echo $str;
done
~~~
Das zweite echo mit den Backticks war gar nicht nötig...