シェルスクリプトの中で文字列長を知りたいときがあります。 文字列の長さを取得する簡単な方法は以下の通りです。
$ str="check this length" $ echo ${#str} 17
その他にexprを使う方法もあります。
$ expr length "check this length" 17 $ str="check this length" $ expr length "$str" 17