Hello all,
I'm trying to get a long directory listing in UNIX from within a perl script. I've attempted to use stat and readdir. Readdir only gives me the filename and stat gives me a bunch of stuff I don't want. Basically I want the equivalent of UNIX's ls -l. Is this possible with Perl functions or must I resort to the dreaded system command?
TIA
...Kevin