# HG changeset patch # User Dirk Olmes # Date 1678774751 -3600 # Node ID 7d3c872681cb1de1053f60287dfea1dc982410ee # Parent 0e22ae080bf1a3ecabf709ba4ef92b25676942a4 more braucht jetzt eine Option, damit am Ende "rausgefallen" wird diff -r 0e22ae080bf1 -r 7d3c872681cb zshrc --- a/zshrc Fri Dec 09 08:25:36 2022 +0100 +++ b/zshrc Tue Mar 14 07:19:11 2023 +0100 @@ -33,7 +33,7 @@ ff() { find $2 -print0 | xargs -0 grep $1 } gve() { grep -ve '^#' $1 | uniq | less } hgrep() { history | grep $* } -ll() { /usr/bin/env -u LC_ALL LANG=C ls -laFh "$@" | more } +ll() { /usr/bin/env -u LC_ALL LANG=C ls -laFh "$@" | more -e } lr() { /usr/bin/env -u LC_ALL LANG=C ls -rtlh "$@" } mcd() { mkdir $1; cd $1 } psg() { ps auxww | grep -v grep | grep -i "$@" }