linux – 如何列出所有systemd蒙版单元?

前端之家收集整理的这篇文章主要介绍了linux – 如何列出所有systemd蒙版单元?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有一种简单的方法可以列出所有系统蒙版单元?

我能想到:

ls -l /etc/systemd/system/* | grep /dev/null

或者(仅限单位名称):

ls -l /etc/systemd/system/* | grep /dev/null | cut -d' ' -f12 | awk -F'/' '{ print $(NF) }'

有更清晰的方法吗?

解决方法

–state选项可以完成这项工作
systemctl list-unit-files --state=masked
原文链接:https://www.f2er.com/linux/393896.html

猜你在找的Linux相关文章