[Shell command] シェルのコマンドで文字列を小文字に変換する

作成日: 2023年11月01日

awk コマンドの tolower() 関数を使用すると、シェルのコマンドで文字列を小文字に変換することができます。

echo "HELLO WORLD" | awk '{print tolower($0)}'

実行結果は下記のとおりです。

hello world
Shell command awk