Skip to content
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pages/linux/systemctl-list-unit-files.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# systemctl list-unit-files

> List installed unit files and their enablement states.
> See also: `systemctl list-units` for listing units currently loaded in memory.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#list-unit-files%20PATTERN%E2%80%A6>.

- List installed unit files and their enablement states:

`systemctl list-unit-files`

- Filter by state (e.g., enabled):

`systemctl list-unit-files --state enabled`

- Filter by a name pattern (e.g., sshd*):

`systemctl list-unit-files 'sshd*'`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`systemctl list-unit-files 'sshd*'`
`systemctl list-unit-files '{{sshd*}}'`


- Print output directly to stdout (disable pager):

`systemctl list-unit-files --no-pager`

- Print output without headers or footers (for scripts):

`systemctl list-unit-files --no-legend`