シンプルに1行でエラー処理ができたのでメモ
下記のような構文を用いる
{エラー判定するコマンド} && {成功時に実行するコマンド} || {エラー時に実行するコマンド}
test 0 -gt 30 && echo 正しい || echo 間違い
処理結果: 間違い
test 100 -gt 30 && echo 正しい || echo 間違い
処理結果: 正しい
Go to list of users who liked
More than 1 year has passed since last update.
シンプルに1行でエラー処理ができたのでメモ
下記のような構文を用いる
{エラー判定するコマンド} && {成功時に実行するコマンド} || {エラー時に実行するコマンド}
test 0 -gt 30 && echo 正しい || echo 間違い
処理結果: 間違い
test 100 -gt 30 && echo 正しい || echo 間違い
処理結果: 正しい
Register as a new user and use Qiita more conveniently
Go to list of users who liked