在我的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)如果找到任何匹配,则立即退出零状态.