入力 hello labex からすべての o、l、h 文字を削除するコマンドはどれですか?
hello labex
o
l
h
echo 'hello labex' | tr 'olh' 'OLH'
echo 'hello labex' | cut -d 'olh'
echo 'hello labex' | tr -d 'olh'
echo 'hello labex' | tr -s 'olh'