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