linux – 从输出中删除chkconfig头

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

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

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

[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”或“False”.

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

解决方法:

这是因为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"

因为我们使用grep的-q选项(来自man grep)如果找到任何匹配,则立即退出零状态.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...