From ca7553b9d87829d1cb139cdf5e62ec711cba2441 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Sun, 3 Oct 2021 11:15:45 +0200 Subject: [PATCH] Update ps faux alias to allow regex with grep --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 0c80e46..7fc2ced 100644 --- a/zshrc +++ b/zshrc @@ -160,7 +160,7 @@ fi alias wotgobblemem='ps -o time,ppid,pid,nice,pcpu,pmem,user,comm -A | sort -n -k 6 | tail -15' # Afficher uniquement le processus à partir de ps -alias px='ps faux|grep -v grep|grep -i -e VSZ -e ' +alias px='ps faux|grep -v grep|grep -iE -e VSZ -e ' # Décompression alias untargz='tar -zxvf'