입력 hello labex에서 o, l, h 문자를 모두 제거하는 명령은 무엇인가요?
hello labex
o
l
h
echo 'hello labex' | cut -d 'olh'
echo 'hello labex' | tr 'olh' 'OLH'
echo 'hello labex' | tr -s 'olh'
echo 'hello labex' | tr -d 'olh'