summaryrefslogtreecommitdiff
path: root/man/man1/pf.1
diff options
context:
space:
mode:
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)