snippetbashTip
systemctl list-unit-files — List installed unit files and their enablement states. See also: `systemctl list-units`. More inform
Viewed 0 times
unitcommandfilessystemctl list-unit-filesandclilistinstalled
linux
Problem
How to use the
systemctl list-unit-files command: List installed unit files and their enablement states. See also: systemctl list-units. More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#list-unit-files%20PATTERN%E2%80%A6>.Solution
systemctl list-unit-files — List installed unit files and their enablement states. See also: systemctl list-units. 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 states:
systemctl list-unit-filesFilter by state:
systemctl list-unit-files --state {{enabled|disabled|static|...}}Filter by unit type:
systemctl list-unit-files {{[-t|--type]}} {{service|socket|timer|...}}Filter by a name pattern:
systemctl list-unit-files '{{sshd*}}'Print output directly to
stdout:systemctl list-unit-files --no-pagerPrint output without headers or footers:
systemctl list-unit-files --no-legendCode Snippets
List installed unit files and their states
systemctl list-unit-filesFilter by state
systemctl list-unit-files --state {{enabled|disabled|static|...}}Filter by unit type
systemctl list-unit-files {{[-t|--type]}} {{service|socket|timer|...}}Filter by a name pattern
systemctl list-unit-files '{{sshd*}}'Print output directly to `stdout`
systemctl list-unit-files --no-pagerContext
tldr-pages: linux/systemctl list-unit-files
Revisions (0)
No revisions yet.