从输出中删除chkconfig标头

时间:2015-11-13 13:56:01

标签: linux bash centos7

在我的CentOS机器上,我编写了一个脚本,告诉我是否安装了服务。 这是脚本

count=$(chkconfig --list | grep -c "$1")
if [ $count = 0 ]; then
    echo "False"
else
    echo "True"
fi

问题是命令的输出总是包含chkconfig输出的起始行。例如,这里是script.sh network

的输出
[root@vm ~]# ./script.sh network

Note: This output shows SysV services only and does not include native
      systemd services. SysV configuration data might be overridden by native
      systemd configuration.

      If you want to list systemd services use 'systemctl list-unit-files'.
      To see services enabled on particular target use
      'systemctl list-dependencies [target]'.

True

似乎count变量正确包含grep出现的次数,但是脚本将始终输出chkconfig标题行,即使我只回显" True"或"错误"在剧本中。

为什么会这样?以及如何隐藏这些线?

1 个答案:

答案 0 :(得分:5)

这是因为cordova plugin rm cordova-plugin-googleplus 最初通过chkconfig --list返回标头。只需使用stderr

将其静音
2>/dev/null

另请注意,整个count=$(chkconfig --list 2>/dev/null | grep -c "$1") # ^^^^^^^^^^^ 块可以简化为:

if / else

由于我们使用chkconfig --list 2>/dev/null | grep -q "$1" && echo "True" || echo "False" 的{​​{1}}选项(来自-q立即退出,如果找到任何匹配,则会立即退出