From f51392ecbfd309b9e1e64b1e64ff461d9c48ba25 Mon Sep 17 00:00:00 2001 From: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> Date: Fri, 3 Oct 2025 11:59:04 +0000 Subject: [PATCH] systemctl-show: add page (#18316) --- pages/linux/systemctl-show.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/systemctl-show.md diff --git a/pages/linux/systemctl-show.md b/pages/linux/systemctl-show.md new file mode 100644 index 0000000000..37779cb05d --- /dev/null +++ b/pages/linux/systemctl-show.md @@ -0,0 +1,28 @@ +# systemctl show + +> Show properties of units or systemd itself. +> More information: . + +- Show properties of the system service manager: + +`systemctl show` + +- Show properties of the user service manager: + +`systemctl show --user` + +- Show properties of a specific unit: + +`systemctl show {{unit}}` + +- Show properties of a specific user unit: + +`systemctl show --user {{unit}}` + +- Include empty properties in the list: + +`systemctl show {{[-a|--all]}}` + +- Only show the specified properties: + +`systemctl show {{[-p|--property]}} {{Wants,Conflicts,...}} {{unit}}`