RE: Perl Breakdown

2003-01-27 Thread Jesse, Rich
26, 2003 4:34 AM To: Multiple recipients of list ORACLE-L Subject: Re: Perl Breakdown hello to everybody the ls behaviour regarding date information is POSIXly correct. after 6 months the date is displayed in a different way.only linux user have an optional parameter to change

Re: Perl Breakdown

2003-01-26 Thread Markus Reger
hello to everybody the ls behaviour regarding date information is POSIXly correct. after 6 months the date is displayed in a different way.only linux user have an optional parameter to change the timeformat for all displayed items. the perl script - for purist scalar localtime stat \${1}\

RE: Perl Breakdown

2003-01-25 Thread Jesse, Rich
Having the same problem of inconsistent output from ls (and other Unix commands!), I grabbed els from http://www.sourceforge.net. I use els -p +Gmsn +TMDY3, aliased of course, to produce consistent listings everytime. For an ls -l equivalent, I use els -l +TMDY3. HTH! GL! :) Rich Rich Jesse

Re: Perl Breakdown

2003-01-25 Thread Jared Still
Interesting utility, though you need to navigate to the CVS browser to actually get the file. http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/els/els/ Jared On Saturday 25 January 2003 07:23, Jesse, Rich wrote: Having the same problem of inconsistent output from ls (and other Unix

Perl Breakdown

2003-01-24 Thread Post, Ethan
This will make Jared happy, I finally broke down and fumbled my way through some perl. function f_file_date { { print #!/usr/bin/perl print print scalar(localtime((stat(\${1}\))[9])) } tmp.pl perl tmp.pl rm tmp.pl } This little diddy can be placed right in my .ksh script to

Re: Perl Breakdown

2003-01-24 Thread Jared . Still
[EMAIL PROTECTED] cc: Subject:Perl Breakdown This will make Jared happy, I finally broke down and fumbled my way through some perl. function f_file_date { { print #!/usr/bin/perl print print scalar(localtime((stat(\${1}\))[9])) } tmp.pl perl tmp.pl rm