diff --git a/cheatsheets/ps b/cheatsheets/ps new file mode 100644 index 0000000..06dac71 --- /dev/null +++ b/cheatsheets/ps @@ -0,0 +1,8 @@ +# To list every process on the system: +ps aux + +# To list every process owned by foouser: +ps -aufoouser + +# To list every process with a user-defined format: +ps -eo pid,user,command \ No newline at end of file