From: Frank Terbeck Date: Thu, 26 May 2011 18:51:32 +0000 (+0200) Subject: Fix `lsold' globbing flags [Closes: issue991] X-Git-Tag: v0.3.90~3 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=42cc9b02bc45d582f558c5c1c68b50a69e8a18da;p=grml-etc-core.git Fix `lsold' globbing flags [Closes: issue991] Before it was just a `lsnew' derivative. Reported-by: Bernhard Tittelbach Signed-off-by: Frank Terbeck --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 8643fae..4c34e52 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3212,7 +3212,7 @@ alias lse='ls -d *(/^F)' # only show empty directories #a2# Display the ten newest files alias lsnew="ls -rl *(D.om[1,10])" # display the newest files #a2# Display the ten oldest files -alias lsold="ls -rtlh *(D.om[1,10])" # display the oldest files +alias lsold="ls -rtlh *(D.Om[1,10])" # display the oldest files #a2# Display the ten smallest files alias lssmall="ls -Srl *(.oL[1,10])" # display the smallest files