Mercurial > hg > zsh-env
changeset 187:7d3c872681cb
more braucht jetzt eine Option, damit am Ende "rausgefallen" wird
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 14 Mar 2023 07:19:11 +0100 |
parents | 0e22ae080bf1 |
children | 757255b99cff |
files | zshrc |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 "$@" }