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.
相信使用centos的人一定遇到过以下信息
包 1:已经安装的东西和最新版本
我想让我的 bash 脚本忽略此消息,以便用户看不到此消息。
我尝试过的尝试
yum -y -q install something
但它仍然出现......
尝试将输出重定向到 grep 并过滤消息:
yum -y -q install something 2>&1 | grep -v "already installed and latest version"
或者只是将所有消息完全重定向到 /dev/null:
yum -y -q install something >/dev/null 2>&1