From: martin f. krafft Date: Sat, 10 May 2008 12:15:02 +0000 (+0100) Subject: fix dev null path X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/8199db70cb00be55499c2a7a074288df6d41196b?hp=e05c9ebaca10e64b6724b95fcafcb7af14ade43b fix dev null path --- diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 6762211..575b1bb 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -64,7 +64,7 @@ compdef _doc doc alias giti='git init && git add . && git commit -minitial\ checkin' -if whence tailf >/devnull; then +if whence tailf >/dev/null; then alias t=tailf else alias t='tail -f'