X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=577c63f094b0ea96a513dfe37d836e0b8e5cbaa3;hb=c9726efc0f6baf5cc1b0144eb6a2b7f5b963e8a0;hp=b29bc3750a0a0557d5dc6e571e34d129fc4788ac;hpb=2bf79bbb247c6c349ae697abfd2a3fdca1f2681a;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index b29bc37..577c63f 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3517,22 +3517,22 @@ regcheck() { #f5# List files which have been accessed within the last {\it n} days, {\it n} defaults to 1 accessed() { emulate -L zsh - print -l *(a-${1:-1}) + print -l -- *(a-${1:-1}) } #f5# List files which have been changed within the last {\it n} days, {\it n} defaults to 1 changed() { emulate -L zsh - print -l *(c-${1:-1}) + print -l -- *(c-${1:-1}) } #f5# List files which have been modified within the last {\it n} days, {\it n} defaults to 1 modified() { emulate -L zsh - print -l *(m-${1:-1}) + print -l -- *(m-${1:-1}) } # modified() was named new() in earlier versions, add an alias for backwards compatibility -which new >/dev/null || alias new=modified +check_com new || alias new=modified #f5# Grep in history greph() {