如何不显示命令响应而只显示条件响应

如何不显示命令响应而只显示条件响应
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将任何错误消息(不一定)重定向stderrstdin

相关内容