Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列の長さを調べるためにこれを書きましたが、文字列の長さは表示されません。
私が書いたものに何か問題がありますか?私はbashの初心者です。
Str=abcdefghj echo "Str is:" `expr length $Str` "characters long"
これは、bash でネイティブに実行できます。頼る必要はありません。expr
expr
echo ${#Str}