8 if expr "$self" : ".*old" >/dev
/null
11 find "$@" -type f
-printf "%T@ %p\n" |
while read ts fn
14 if [ $lts -eq -1 -o $ts -lt $lts ]
17 echo `date -d @$lts` "$fn"
22 find "$@" -type f
-printf "%T@ %p\n" |
while read ts fn
25 if [ $gts -eq -1 -o $ts -gt $gts ]
28 echo `date -d @$gts` "$fn"
40 findnewestfile - Search for the newest file in a given path recursively and always show the most recent while scanning
42 findoldestfile - Search for the oldest file in a given path recursively and always show the most older while scanning
46 findnewestfile [B<path>]
48 findoldestfile [B<path>]
52 Search for the newest/oldest file in given directory and in its subdirectories
53 showing files immediately when found one newer/older than the past ones.