From: martin f. krafft Date: Fri, 22 May 2009 11:32:42 +0000 (+0200) Subject: add lgrep function X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/2da43e7f8590b45d7d29dec8f5d2997837bcd702 add lgrep function --- diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 16005bf..51be089 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -101,6 +101,11 @@ alias ldl='lless ~log/daemon.log' alias tkl='ltail kern.log' alias lkl='lless ~log/kern.log' +function lgrep() { + local pattern="$1"; shift + eval egrep "'$pattern'" "~log/${(j: ~log/:)@}" +} + alias px='ps afux' alias mps='ps -ao user,pcpu,start,command'