diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2013-04-06 17:42:44 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2013-04-06 17:43:27 +0200 |
commit | 60b30256b0343ef713b4b70c0781747d3b8f4f1d (patch) | |
tree | 57760b9c2928372edfcd22ce249af022b8a49504 /.zsh | |
parent | b86b5ba7892671e48f350a53cefd5ac38afa8203 (diff) | |
download | dotfiles-60b30256b0343ef713b4b70c0781747d3b8f4f1d.tar.gz dotfiles-60b30256b0343ef713b4b70c0781747d3b8f4f1d.tar.bz2 dotfiles-60b30256b0343ef713b4b70c0781747d3b8f4f1d.zip |
Ignore /dev/zero stuff in check_libs
Diffstat (limited to '')
-rw-r--r-- | .zsh/zshfunctions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh/zshfunctions b/.zsh/zshfunctions index 823a65b..7c34dc1 100644 --- a/.zsh/zshfunctions +++ b/.zsh/zshfunctions @@ -29,7 +29,7 @@ _unpack () check_libs() { for i in $(ps -A -o pid | tail -n +2); do - pmap $i | grep deleted && echo $(ps $i) + pmap $i | grep deleted | grep -v /dev/zero && echo $(ps $i) done } |