From f761f6359c8c442494090872c8c4aefbc9ffed10 Mon Sep 17 00:00:00 2001 From: TheRootDaemon Date: Thu, 20 Nov 2025 21:50:24 +0530 Subject: [PATCH] systemctl-list-paths: add page --- pages/linux/systemctl-list-paths.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/systemctl-list-paths.md diff --git a/pages/linux/systemctl-list-paths.md b/pages/linux/systemctl-list-paths.md new file mode 100644 index 00000000000000..55b105dfadda2d --- /dev/null +++ b/pages/linux/systemctl-list-paths.md @@ -0,0 +1,28 @@ +# systemctl list-paths + +> List path units currently in memory, ordered by path. +> More information: . + +- Show all path units currently in memory: + +`systemctl list-paths` + +- List path units matching specific wildcard pattern ie, `shell-globbing`: + +`systemctl list-paths {{pattern}}` + +- List path units that match with multiple patterns: + +`systemctl list-paths {{pattern_1 pattern_2 ...}}` + +- Show all path units, including inactive ones: + +`systemctl list-paths --all` + +- Filter path units by state: + +`systemctl list-paths --state {{state}}` + +- Also show unit types in the output: + +`systemctl list-paths --show-types`