X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/08d8972a405e57c7724e9d7fe7529ee32bd14d25..471065f0aa290386a4f21f025fd0588f89691e64:/.zsh/zshrc/30_aliases diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 16005bf..bdbef14 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -101,9 +101,19 @@ 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' +function of() { lsof -np "$1" } +compdef _pids of + +function psgrep() { ps aux | grep "[${1[1]}]${1[2,-1]}" } + alias bofh='fortune bofh-excuses' autoload -U baseconv