Welcher Befehl entfernt jedes Zeichen o, l und h aus der Eingabe hello labex?
o
l
h
hello labex
echo 'hello labex' | tr 'olh' 'OLH'
echo 'hello labex' | tr -s 'olh'
echo 'hello labex' | cut -d 'olh'
echo 'hello labex' | tr -d 'olh'