perl 2.0 (no announcement message available)
[p5sagit/p5-mst-13.2.git] / eg / README
CommitLineData
378cc40b 1This stuff is supplied on an as-is basis--little attempt has been made to make
2any of it portable. It's mostly here to give you an idea of what perl code
3looks like, and what tricks and idioms are used.
4
5System administrators responsible for many computers will enjoy the items
6down in the g directory very much. The scan directory contains the beginnings
7of a system to check on and report various kinds of anomalies.
8
9If you machine doesn't support #!, the first thing you'll want to do is
10replace the #! with a couple of lines that look like this:
11
12 eval "exec /usr/bin/perl -S $0 $*"
13 if $running_under_some_shell;
14
15being sure to include any flags that were on the #! line. A supplied script
16called "nih" will translate perl scripts in place for you:
17
18 nih g/g??