summaryrefslogtreecommitdiff
path: root/man/man1/pf.1
diff options
context:
space:
mode:
authorDavid Wührer <def@gmx.at>2024-05-18 21:04:34 +0200
committerDavid Wührer <def@gmx.at>2024-05-18 21:04:34 +0200
commit77cfffee6177fb0421fa0fce15d6a1875bde4816 (patch)
tree251428cdd482ea50cfb019dbd3c3bafd79d2fd14 /man/man1/pf.1
parent75b23ce1ff0daab363725a2a5755ea80bbeaa68e (diff)
manuals, sum-down, radix
Diffstat (limited to 'man/man1/pf.1')
-rw-r--r--man/man1/pf.123
1 files changed, 23 insertions, 0 deletions
diff --git a/man/man1/pf.1 b/man/man1/pf.1
new file mode 100644
index 0000000..ca9f839
--- /dev/null
+++ b/man/man1/pf.1
@@ -0,0 +1,23 @@
+.TH pf 1 2023-05-13 utils
+
+.SH NAME
+pf \- print process family
+
+.SH SYNOPSIS
+.B pf
+.I pid
+
+.SH DESCRIPTION
+.B pf
+prints the ancestor processes of the given process up to the init daemon (or whatever is pid 1 inside a docker container), as well as all its descendents, that is, its child processes and their child processes and so on.
+
+This gives an overview of where that process is coming from, or if it had been disowned, as well as any other processes whose signals it is directly or indirectly waiting for.
+
+It can be useful if an application has become unresponsive or just won't quit. Or just informative about how an application is built and what it is doing.
+
+.SH EXAMPLES
+.B pf
+.I $$
+
+.SH SEE ALSO
+.BR ps (1),\ top (1)