./categories/os
쉘 문자열 치환 (tr/sed)
쉘 문자열 치환 (tr / sed)
echo 'THIS' | tr 'A-Z' 'a-z'
echo 'THIS' | tr -d 'A'
echo 'This is' | sed 's/This/That/g'
echo 'THIS' | sed 's/\(.*\)/\L\1/'
echo 'a\tb' | tr '\t' ' '
./comments
일치하는 문서가 없습니다.
./categories/os
echo 'THIS' | tr 'A-Z' 'a-z'
echo 'THIS' | tr -d 'A'
echo 'This is' | sed 's/This/That/g'
echo 'THIS' | sed 's/\(.*\)/\L\1/'
echo 'a\tb' | tr '\t' ' '
./comments