Systemctl 查看目标名称

Systemctl 查看目标名称

有什么方法可以让我只查看 systemd 目标的名称。

我知道我可以使用:

systemctl --type=target

但它还给了我其他信息,例如“加载活动”,我只想要运行目标的名称。

答案1

我不认为systemctl它本身可以产生这个,但你可以要求它提供未格式化、未修饰的输出并过滤:

systemctl list-units --type=target --plain --no-legend | cut -f1 -d' '

相关内容