Wagner, David --- Senior Programmer Analyst --- WGO wrote:

From: Wagner, David --- Senior Programmer Analyst --- WGO
From: Gunwant Singh [mailto:[EMAIL PROTECTED]
9 print "$file\t$perm\n";

        Then change print to
        printf "$file %04o\n", $perm;

Better to do it this way:

        printf "%s %04o\n", $file, $perm;


John
--
Perl isn't a toolbox, but a small machine shop where you
can special-order certain sorts of tools at low cost and
in short order.                            -- Larry Wall

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to