1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Stat::lsMode
"Stat::lsMode" generates mode and permission strings that look like the
ones generated by the Unix "ls -l" command. For example, a regular file
that is readable by everyone and writable only by its owner has the mode
string "-rw-r--r--". "Stat::lsMode" will either examine the file and
produce the right mode string for you, or you can pass it the mode that
you get back from Perl's "stat" call.
INSTALLATION
This is a Perl module distribution. It should be installed with
whichever tool you use to manage your installation of Perl, e.g. any of
cpanm .
cpan .
cpanp -i .
Consult http://www.cpan.org/modules/INSTALL.html for further
instruction. Should you wish to install this module manually, the
procedure is
perl Makefile.PL
make
make test
make install
COPYRIGHT AND LICENSE
This software is copyright (c) 1998 by Mark-Jason Dominus.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
|