2020年5月20日 星期三

bash 大寫轉小寫

echo $str | tr '[:upper:]' '[:lower:]'

echo $str | awk '{print tolower($0)}'

bash 4
echo "${str,,}"

沒有留言: