gpt4 book ai didi

linux - 从输出中删除 chkconfig header

转载 作者:可可西里 更新时间:2023-11-01 11:48:50 25 4
gpt4 key购买 nike

在我的 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”或“False”。

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

最佳答案

这是因为 chkconfig --list 最初通过 stderr 返回一个 header 。只需使用 2>/dev/null 使其静音:

count=$(chkconfig --list 2>/dev/null | grep -c "$1")
# ^^^^^^^^^^^

另请注意,整个 if/else block 可以简化为:

chkconfig --list 2>/dev/null | grep -q "$1" && echo "True" || echo "False"

由于我们使用 grep-q 选项,它(来自 man grep)立即退出,如果有的话,状态为零找到匹配

关于linux - 从输出中删除 chkconfig header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33694356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com