marconi has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.
  • Comment on (OT) In Korne Shell Script - Finding modified File List after the chosen date...
  • Download Code

Replies are listed 'Best First'.
Re: (OT) In Korne Shell Script - Finding modified File List after the chosen date...
by shmem (Chancellor) on Dec 07, 2007 at 15:03 UTC
    Hi, I think this may not be the right place (...)

    Now that you've said it, I think you're right. Here you go. You might also get good answers asking in comp.unix.shell.

    --shmem

    _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                  /\_¯/(q    /
    ----------------------------  \__(m.====·.(_("always off the crowd"))."·
    ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
Re: (OT) In Korne Shell Script - Finding modified File List after the chosen date...
by KurtSchwind (Chaplain) on Dec 07, 2007 at 15:26 UTC

    This isn't a perl question, but your issue is easily fixed.

    Change your find to

    find "$dir" -type -f -newermc /tmp/timestamp
    the 'mc' at the end of newer means that you are looking for the last 'M'odified time compared to the 'C'reation date/time of the file you give it.

    --
    I used to drive a Heisenbergmobile, but every time I looked at the speedometer, I got lost.