diff --git a/sheets/proc b/sheets/proc new file mode 100644 index 0000000..38e3284 --- /dev/null +++ b/sheets/proc @@ -0,0 +1,15 @@ +# /proc is a pseudo-file system location that +# contains information about a running process by PID + +# See the commandline arguments that started the process +cat /proc//cmdline + +# See the process's environment variables +cat /proc//environ + +# See the process's status and usage information +# such as CPU and memory +cat /proc//status + +# See every file the process has open +ls -l /proc/fd