# 대문자 치환
[root@active_node ~]# echo "hello World" | tr a-z A-Z
HELLO WORLD

# 소문자 치환
[root@active_node ~]# echo "hello World" | tr A-Z a-z
hello world

# 대응 되는 문자 변경 / b를 c문자로 변경
[root@active_node ~]# echo "abcde" | tr b c
accde

 

블로그 이미지

나무뚱이

,