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}}`