From 60b30256b0343ef713b4b70c0781747d3b8f4f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sat, 6 Apr 2013 17:42:44 +0200 Subject: Ignore /dev/zero stuff in check_libs --- .zsh/zshfunctions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.zsh') 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 } -- cgit v1.2.3