diff options
author | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
commit | 7c312e6b6a7b1f9412f10365baf3c5eca8fa5649 (patch) | |
tree | b4adabf341898a4378f4b7f8c7fb65f3f7c77769 /contrib/perl5/eg/README | |
parent | ff6b7ba98e8d4aab04cbe2bfdffdfc9171c1812b (diff) |
Maintenance releace 3 of perl5.005. Includes support for threads.
Notes
Notes:
svn path=/vendor/perl5/dist/; revision=46307
Diffstat (limited to 'contrib/perl5/eg/README')
-rw-r--r-- | contrib/perl5/eg/README | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/perl5/eg/README b/contrib/perl5/eg/README new file mode 100644 index 000000000000..15eb6551a37e --- /dev/null +++ b/contrib/perl5/eg/README @@ -0,0 +1,22 @@ +Although supplied with the perl package, the perl scripts in this eg +directory and its subdirectories are placed in the public domain, and +you may do anything with them that you wish. + +This stuff is supplied on an as-is basis--little attempt has been made to make +any of it portable. It's mostly here to give you an idea of what perl code +looks like, and what tricks and idioms are used. + +System administrators responsible for many computers will enjoy the items +down in the g directory very much. The scan directory contains the beginnings +of a system to check on and report various kinds of anomalies. + +If you machine doesn't support #!, the first thing you'll want to do is +replace the #! with a couple of lines that look like this: + + eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' + if $running_under_some_shell; + +being sure to include any flags that were on the #! line. A supplied script +called "nih" will translate perl scripts in place for you: + + nih g/g?? |