From b2e947fbc74e3f3a722bcbaf27e3d671aac2b59d Mon Sep 17 00:00:00 2001 From: Umer Salman Date: Sun, 19 Nov 2017 12:32:35 -0600 Subject: [PATCH] Add some more info on ps (#65) Also fixed a formatting typo. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c3ce202..46d3b55 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ 1.5. [Process Monitoring Operations](#15-process-monitoring-operations) 2. [Basic Shell Programming](#2-basic-shell-programming) 2.1. [Variables](#21-variables) - 2.2 [Array](#22-array) + 2.2. [Array](#22-array) 2.3. [String Substitution](#23-string-substitution) 2.4. [Functions](#24-functions) 2.5. [Conditionals](#25-conditionals) @@ -821,6 +821,10 @@ Lists your processes. ```bash ps -u yourusername ``` +Use the flags ef. e for every process and f for full listing. +```bash +ps -ef +``` ### o. `quota` Shows what your disk quota is.