如何仅打印 systemctl 服务 Active 状态单?

如何仅打印 systemctl 服务 Active 状态单?
systemctl status httpd

● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Fri 2019-10-11 00:35:58 EEST; 1 weeks 3 days ago
     Docs: man:httpd(8)
           man:apachectl(8)
  Process: 29728 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
 Main PID: 10722 (httpd)
   Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"
   Memory: 8.7M

我只想在一行下方打印主机名

Active: active (running) since Fri 2019-10-11 00:35:58 EEST; 1 weeks 3 days ago

答案1

systemctl --no-pager status httpd | grep Active应该返回你想要的输出。

相关内容