Quelle commande supprime tous les caractères o, l et h de l’entrée hello labex ?
o
l
h
hello labex
echo 'hello labex' | tr -d 'olh'
echo 'hello labex' | tr -s 'olh'
echo 'hello labex' | tr 'olh' 'OLH'
echo 'hello labex' | cut -d 'olh'