📌  相关文章
📜  linux hide 命令输出 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:33.011000             🧑  作者: Mango

代码示例1
command > /dev/null 2>&1

Explanation:
    1. command > /dev/null: redirects the output of command(stdout) to /dev/null
    2. 2>&1: redirects stderr to stdout, so errors (if any) also goes to /dev/null