Shell 字元替換功能(tr)
Shell 字元替換功能(tr)
在Shell中實做字元替換功能
###########################
#!/bin/bash
#Filename:bash_tr_01.sh
# sh ./bash_tr_01.sh
echo “My Name IS JASH” | tr ‘A-Z’ ‘a-z’
###########################
參考出處:Linux Shell 腳本攻略 P49
Shell 字元替換功能(tr)
在Shell中實做字元替換功能
###########################
#!/bin/bash
#Filename:bash_tr_01.sh
# sh ./bash_tr_01.sh
echo “My Name IS JASH” | tr ‘A-Z’ ‘a-z’
###########################
參考出處:Linux Shell 腳本攻略 P49