ping -c 5 test && echo "success" || echo "failure"
出力:成功/失敗
答え1
出力を次にリダイレクト/dev/null
ping -c 5 test > /dev/null 2>&1 && echo "success" || echo "failure"
2>&1
エラーメッセージ(必ずしもそうではありません)を次にstderr
リダイレクトします。stdin
ping -c 5 test && echo "success" || echo "failure"
出力:成功/失敗
出力を次にリダイレクト/dev/null
ping -c 5 test > /dev/null 2>&1 && echo "success" || echo "failure"
2>&1
エラーメッセージ(必ずしもそうではありません)を次にstderr
リダイレクトします。stdin