Linux

Systemctl 查看目標名稱

  • November 8, 2022

有什麼方法可以讓我只查看 systemd 目標的名稱。

我知道我可以使用:

systemctl --type=target

但它給了我其他資訊以及“載入活動”,我只想要執行目標的名稱。

我不認為systemctl它自己可以產生這個,但你可以要求它提供未格式化、未修飾的輸出並過濾:

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

引用自:https://unix.stackexchange.com/questions/724067