Update ps faux alias to allow regex with grep

This commit is contained in:
Jeremy Gardais 2021-10-03 11:15:45 +02:00
parent 348840ce75
commit ca7553b9d8
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
1 changed files with 1 additions and 1 deletions

2
zshrc
View File

@ -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'