Re: Reg. Directory listing program
[email protected] ("John W. Krahn")
| Newsgroups | perl.beginners |
|---|---|
| Message-ID | <[email protected]> |
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