in reply to Re^4: print last file updated into directory
in thread print last file updated into directory


thanks for the pointers. makes sense to use the latest version of perl then.
I use a box which has 5.10.1.
some of the customers ive worked with have HP UX and solaris , besides there's no telling to which server OS, they will migrate to in the future, in which case i might have to rework the code if i use Path::Tiny.
Thanks! im learning

The temporal difficulty with perl is u need to know C well to know the awesome.else u just keep *using* it and writing inefficient code
  • Comment on Re^5: print last file updated into directory

Replies are listed 'Best First'.
Re^6: print last file updated into directory
by marto (Cardinal) on Oct 31, 2014 at 10:39 UTC

    Just an FYI, if you look at the links Anonymous Monk gave you, and checked the dependencies, they're all core and have been for many years. Path::Tiny is a pure perl module, so likely this won't give you much cause for concern.


      thanks Marto. Lots of docs im going through right now..shared to my by Anonymous Monk .

      The temporal difficulty with perl is u need to know C well to know the awesome.else u just keep *using* it and writing inefficient code
Re^6: print last file updated into directory (future is unpredictable)
by Anonymous Monk on Oct 31, 2014 at 11:28 UTC

    besides there's no telling to which server OS, they will migrate to in the future, in which case i might have to rework the code if i use Path::Tiny.

    Program for today and today's operating systems to solve todays problem, what you're actually getting paid for, the future is unpredictable, cross that bridge when you get paid for it :)

    FWIW the way I see it Path::Tiny should work for you today, it should work for 99% of computers in use today, because 99% are Unix-like and Win32Windows

    Some perspective on predicting the future Re^6: Finding repeat sequences.