in reply to Re: Finding a file by age (Newest First)
in thread Finding a file by age (Newest First)

You might want to make that ls -Atr

The PerlMonk tr/// Advocate

Replies are listed 'Best First'.
Re^3: Finding a file by age (Newest First)
by dave_the_m (Monsignor) on Jun 04, 2004 at 20:03 UTC
    In this example, I'd skip Perl altogether.
    ls -At| grep '^te' | head -2 | tail -1

    Dave.