diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-05-29 19:20:12 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2013-05-29 19:20:12 +0100 |
commit | 711c103e77cf362b7222de5062127df2ffe7a1f1 (patch) | |
tree | ac3560365e81e0c528cce2a4e8dbd976294b80a3 | |
parent | a46aef770467e00a259f8215162bcc4e7cc7f1f0 (diff) | |
download | zsh-711c103e77cf362b7222de5062127df2ffe7a1f1.tar.gz zsh-711c103e77cf362b7222de5062127df2ffe7a1f1.tar.xz zsh-711c103e77cf362b7222de5062127df2ffe7a1f1.zip |
31422: better heuristic for timestamps in age function
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/Zsh/calsys.yo | 9 | ||||
-rw-r--r-- | Functions/Calendar/age | 10 |
3 files changed, 20 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 3c74421c6..e92942fa1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-05-29 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * 31422: Doc/Zsh/calsys.yo, Functions/Calendar/age: better + heuristic for timestamps in use of :file feature. + 2013-05-22 Peter Stephenson <p.w.stephenson@ntlworld.com> * 31405: Doc/Zsh/options.yo: weasel words about diff --git a/Doc/Zsh/calsys.yo b/Doc/Zsh/calsys.yo index b3eb454a0..7dc51ab11 100644 --- a/Doc/Zsh/calsys.yo +++ b/Doc/Zsh/calsys.yo @@ -665,10 +665,15 @@ Instead of an explicit date and time, it's possible to use the modification time of a file as the date and time for either argument by introducing the file name with a colon: +example(print *+LPAR()e-age :file1-+RPAR()) + +matches all files created on the same day (24 hours starting from +midnight) as tt(file1). + example(print *+LPAR()e-age :file1 :file2-+RPAR()) -This matches all files modified no earlier than tt(file1) and -no later than tt(file2). +matches all files modified no earlier than tt(file1) and +no later than tt(file2); precision here is to the nearest second. texinode(Calendar Styles)(Calendar Utility Functions)(Calendar System User Functions)(Calendar Function System) sect(Styles) diff --git a/Functions/Calendar/age b/Functions/Calendar/age index c636bdfe8..17cf4d13e 100644 --- a/Functions/Calendar/age +++ b/Functions/Calendar/age @@ -33,6 +33,7 @@ zmodload -i zsh/parameter autoload -Uz calendar_scandate +local timefmt local -a vals tmp [[ -e $REPLY ]] || return 1 @@ -40,14 +41,19 @@ zstat -A vals +mtime -- $REPLY || return 1 if (( $# >= 1 )); then if [[ $1 = :* ]]; then - zstat -A tmp -F "%Y/%m/%d" +mtime -- ${1#:} || return 1 + if (( $# > 1 )); then + timefmt="%Y/%m/%d:%H:%M:%S" + else + timefmt="%Y/%m/%d" + fi + zstat -A tmp -F $timefmt +mtime -- ${1#:} || return 1 local AGEREF=$tmp[1] else local AGEREF=$1 fi # if 1 argument given, never use globally defined AGEREF2 if [[ $2 = :* ]]; then - zstat -A tmp -F "%Y/%m/%d" +mtime -- ${2#:} || return 1 + zstat -A tmp -F "%Y/%m/%d:%H:%M:%S" +mtime -- ${2#:} || return 1 local AGEREF2=$tmp[1] else local AGEREF2=$2 |