From aaa40ec53da007f8417d7c8bf82d6d70624bb8d1 Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Tue, 18 Feb 2025 00:17:32 +0000 Subject: [PATCH] Update cheatsheets --- tldr/freebsd/procstat | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tldr/freebsd/procstat diff --git a/tldr/freebsd/procstat b/tldr/freebsd/procstat new file mode 100644 index 00000000..9fe415eb --- /dev/null +++ b/tldr/freebsd/procstat @@ -0,0 +1,25 @@ +--- +syntax: markdown +tags: [tldr, freebsd] +source: https://github.com/tldr-pages/tldr.git +--- +# procstat + +> Display detailed information about processes in FreeBSD. +> More information: . + +- Display file descriptors of a specific process: + +`procstat fds {{pid}}` + +- Show virtual memory mappings of a process: + +`procstat vm {{pid}}` + +- Display process arguments: + +`procstat arguments {{pid}}` + +- Show resource limits of a process: + +`procstat rlimit {{pid}}`