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.
$counter変数に格納した値が より大きい限り、実行する必要がある if ステートメントがあります5。
$counter
5
現在の(機能していない)スクリプトのそれぞれのセクションは次のとおりです。
if $counter > 5 then echo "something" fi
私が犯している間違いはおそらく非常に明白ですが、何らかの理由でオンラインで解決策を見つけることができませんでした..ありがとう!
それは非常に簡単です:
if [ "$counter" -gt 5 ] then echo "something" fi
との間で算術演算を行う必要が((あります)):
((
))
if (( $counter > 5 ))
ちなみに、$算術演算を省略してもかまいませんが、そのままにしておくことは問題ありません。
$