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

作成日: 2023年11月01日

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

echo "hello world" | awk '{print toupper($0)}'

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

HELLO WORLD
Shell command awk