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.
前のコマンドのステータスを別の変数にリダイレクトできますか? のような: エコーこんにちは s = エコー $?
あなたはそれを割り当てることができます:
echo hello myVariable=$? echo "Previous echo exit code is $myVariable"
$?は、他の変数と同様に単なる変数です。唯一の魔法は、「自動的に」設定される方法です。
$?