From f7d7da266cc14d8c41ac96c0ceeb19b310b36f07 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Fri, 21 Jul 2023 14:08:43 +0200 Subject: [PATCH] Fix wrong option --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 0cf39a9..cf2f0a6 100644 --- a/zshrc +++ b/zshrc @@ -176,7 +176,7 @@ fi alias wotgobblemem='ps -o time,ppid,pid,nice,pcpu,pmem,user,comm -A | sort --numeric-sort --key=6 | tail -15' # ps aliases -alias px='ps faux|grep --inverse-match -- grep|grep --extended-regexp --ignore-case --regexp=VSZ -e ' +alias px='ps faux|grep --invert-match -- grep|grep --extended-regexp --ignore-case --regexp=VSZ -e ' ## ps with fzf alias fpx="ps -ef | fzf --bind 'ctrl-r:reload(ps -ef)' --header 'Press CTRL-R to reload' --header-lines=1 --color fg:188,bg:233,hl:103,fg+:222,bg+:234,hl+:104" alias pxf="ps -ef | fzf --bind 'ctrl-r:reload(ps -ef)' --header 'Press CTRL-R to reload' --header-lines=1 --color fg:188,bg:233,hl:103,fg+:222,bg+:234,hl+:104"