summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Biggar <markb@rdcf.sm.unisys.com>1988-01-31 20:00:34 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1988-01-31 20:00:34 +0000
commit83b4785aebef542ad391e53b49c107fc5e1b4a58 (patch)
tree0952369ef98dcb17b8a00b1d83e4b51882798561
parent725c4100677777ac4aca591b894c4489fb311d98 (diff)
downloadperl-83b4785aebef542ad391e53b49c107fc5e1b4a58.tar.gz
perl 1.0 patch 11: documentation upgrade
I documented the new eval operator for patch 8 but my automatic patch generator overlooked it for some reason. Here's the documentation for the eval operator, along with some other documentation changes suggested by Mark.
-rw-r--r--patchlevel.h2
-rw-r--r--perl.man.147
-rw-r--r--perl.man.231
-rw-r--r--perldb.man6
4 files changed, 69 insertions, 17 deletions
diff --git a/patchlevel.h b/patchlevel.h
index 4e0e918bcb..98702f8e84 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -1 +1 @@
-#define PATCHLEVEL 10
+#define PATCHLEVEL 11
diff --git a/perl.man.1 b/perl.man.1
index ea40065c0d..d775ac4b56 100644
--- a/perl.man.1
+++ b/perl.man.1
@@ -1,7 +1,13 @@
.rn '' }`
-''' $Header: perl.man.1,v 1.0 87/12/18 16:18:16 root Exp $
+''' $Header: perl.man.1,v 1.0.1.2 88/01/30 17:04:07 root Exp $
'''
''' $Log: perl.man.1,v $
+''' Revision 1.0.1.2 88/01/30 17:04:07 root
+''' patch 11: random cleanup
+'''
+''' Revision 1.0.1.1 88/01/28 10:24:44 root
+''' patch8: added eval operator.
+'''
''' Revision 1.0 87/12/18 16:18:16 root
''' Initial revision
'''
@@ -92,7 +98,7 @@ After locating your script,
compiles it to an internal form.
If the script is syntactically correct, it is executed.
.Sh "Options"
-Note: on first reading this section won't make much sense to you. It's here
+Note: on first reading this section may not make much sense to you. It's here
at the front for easy reference.
.PP
A single-character option may be combined with the following option, if any.
@@ -208,6 +214,11 @@ Note that the lines are printed automatically.
To suppress printing use the
.B \-n
switch.
+A
+.B \-p
+overrides a
+.B \-n
+switch.
.TP 5
.B \-P
causes your script to be run through the C preprocessor before
@@ -219,17 +230,17 @@ by the C preprocessor such as \*(L"if\*(R", \*(L"else\*(R" or \*(L"define\*(R".)
.TP 5
.B \-s
enables some rudimentary switch parsing for switches on the command line
-after the script name but before any filename arguments.
-Any switch found there will set the corresponding variable in the
+after the script name but before any filename arguments (or before a --).
+Any switch found there is removed from @ARGV and sets the corresponding variable in the
.I perl
script.
The following script prints \*(L"true\*(R" if and only if the script is
-invoked with a -x switch.
+invoked with a -xyz switch.
.nf
.ne 2
#!/bin/perl -s
- if ($x) { print "true\en"; }
+ if ($xyz) { print "true\en"; }
.fi
.Sh "Data Types and Objects"
@@ -307,6 +318,8 @@ The following code segment prints out \*(L"The price is $100.\*(R"
print "The price is $Price.\e\|n";\h'|3.5i'# interpreted
.fi
+Note that you can put curly brackets around the identifier to delimit it
+from following alphanumerics.
.PP
Array literals are denoted by separating individual values by commas, and
enclosing the list in parentheses.
@@ -315,6 +328,7 @@ is the value of the final element, as in the C comma operator.
For example,
.nf
+.ne 4
@foo = ('cc', '\-E', $bar);
assigns the entire array value to array foo, but
@@ -343,6 +357,7 @@ just like in any of the standard shells.
The command is executed each time the pseudo-literal is evaluated.
Unlike in \f2csh\f1, no interpretation is done on the
data\*(--newlines remain newlines.
+The status value of the command is returned in $?.
.PP
Evaluating a filehandle in angle brackets yields the next line
from that file (newline included, so it's never false until EOF).
@@ -409,7 +424,9 @@ variable ARGV.
It also uses filehandle ARGV internally.
You can modify @ARGV before the first <> as long as you leave the first
filename at the beginning of the array.
+Line numbers ($.) continue as if the input was one big happy file.
.PP
+.ne 5
If you want to set @ARGV to you own list of files, go right ahead.
If you want to pass switches into your script, you can
put a loop on the front like this:
@@ -486,7 +503,7 @@ The following compound commands may be used to control flow:
LABEL BLOCK continue BLOCK
.fi
-(Note that, unlike C and Pascal, these are defined in terms of BLOCKs, not
+Note that, unlike C and Pascal, these are defined in terms of BLOCKs, not
statements.
This means that the curly brackets are \fIrequired\fR\*(--no dangling statements allowed.
If you want to write conditionals without curly brackets there are several
@@ -499,9 +516,9 @@ The following all do the same thing:
die "Can't open $foo" unless open(foo);
open(foo) || die "Can't open $foo"; # foo or bust!
open(foo) ? die "Can't open $foo" : 'hi mom';
+ # a bit exotic, that last one
.fi
-though the last one is a bit exotic.)
.PP
The
.I if
@@ -641,7 +658,7 @@ This is so that you can write loops like:
(See the
.I do
operator below. Note also that the loop control commands described later will
-NOT work in this construct, since loop modifiers don't take loop labels.
+NOT work in this construct, since modifiers don't take loop labels.
Sorry.)
.Sh "Expressions"
Since
@@ -839,10 +856,10 @@ Note: in order to use the value you must put the whole thing in parentheses.
$cnt = (chown $uid,$gid,'foo');
.fi
+.ne 18
Here's an example of looking up non-numeric uids:
.nf
-.ne 16
print "User: ";
$user = <stdin>;
open(pass,'/etc/passwd') || die "Can't open passwd";
@@ -922,6 +939,7 @@ When the array is entirely read, a null array is returned (which when
assigned produces a FALSE (0) value).
The next call to each() after that will start iterating again.
The iterator can be reset only by reading all the elements from the array.
+You should not modify the array while iterating over it.
The following prints out your environment like the printenv program, only
in a different order:
.nf
@@ -954,6 +972,15 @@ Example:
}
.fi
+.Ip "eval EXPR" 8 6
+EXPR is parsed and executed as if it were a little perl program.
+It is executed in the context of the current perl program, so that
+any variable settings, subroutine or format definitions remain afterwards.
+The value returned is the value of the last expression evaluated, just
+as with subroutines.
+If there is a syntax error or runtime error, a null string is returned by
+eval, and $@ is set to the error message.
+If there was no error, $@ is null.
.Ip "exec LIST" 8 6
If there is more than one argument in LIST,
calls execvp() with the arguments in LIST.
diff --git a/perl.man.2 b/perl.man.2
index ecda600dbd..25f3c26469 100644
--- a/perl.man.2
+++ b/perl.man.2
@@ -1,7 +1,13 @@
''' Beginning of part 2
-''' $Header: perl.man.2,v 1.0 87/12/18 16:18:41 root Exp $
+''' $Header: perl.man.2,v 1.0.1.2 88/01/30 17:04:28 root Exp $
'''
''' $Log: perl.man.2,v $
+''' Revision 1.0.1.2 88/01/30 17:04:28 root
+''' patch 11: random cleanup
+'''
+''' Revision 1.0.1.1 88/01/28 10:25:11 root
+''' patch8: added $@ variable.
+'''
''' Revision 1.0 87/12/18 16:18:41 root
''' Initial revision
'''
@@ -145,8 +151,7 @@ as a command to which output is to be piped, and if the filename ends
with a \*(L"|\*(R", the filename is interpreted as command which pipes
input to us.
(You may not have a command that pipes both in and out.)
-On non-pipe opens, the filename '\-' represents either stdin or stdout, as
-appropriate.
+Opening '\-' opens stdin and opening '>\-' opens stdout.
Open returns 1 upon success, '' otherwise.
Examples:
.nf
@@ -310,7 +315,9 @@ but this has no effect on its operation.
Shifts the first value of the array off, shortening the array by 1 and
moving everything down.
If ARRAY is omitted, shifts the ARGV array.
-See also unshift().
+See also unshift(), push() and pop().
+Shift() and unshift() do the same thing to the left end of an array that push()
+and pop() do to the right end.
.Ip "sleep EXPR" 8 6
.Ip "sleep" 8
Causes the script to sleep for EXPR seconds, or forever if no EXPR.
@@ -326,7 +333,8 @@ Anything matching PATTERN is taken to be a delimiter separating the fields.
(Note that the delimiter may be longer than one character.)
Trailing null fields are stripped, which potential users of pop() would
do well to remember.
-A pattern matching the null string will split into separate characters.
+A pattern matching the null string will split the value of EXPR into separate
+characters.
.sp
Example:
.nf
@@ -373,6 +381,7 @@ First character is at offset 0, or whatever you've set $[ to.
Does exactly the same thing as \*(L"exec LIST\*(R" except that a fork
is done first, and the parent process waits for the child process to complete.
Note that argument processing varies depending on the number of arguments.
+The return value is the exit status of the program.
See exec.
.Ip "tell(FILEHANDLE)" 8 6
.Ip "tell" 8
@@ -422,6 +431,7 @@ Note: in order to use the value you must put the whole thing in parentheses:
$cnt = (unlink 'a','b','c');
.fi
+.ne 7
.Ip "unshift(ARRAY,LIST)" 8 4
Does the opposite of a shift.
Prepends list to the front of the array, and returns the number of elements
@@ -817,6 +827,11 @@ script being executed.
The value should be copied elsewhere before any pattern matching happens, which
clobbers $0.
(Mnemonic: same as sh and ksh.)
+.Ip $<digit> 8
+Contains the subpattern from the corresponding set of parentheses in the last
+pattern matched, not counting patterns matched in nested blocks that have
+been exited already.
+(Mnemonic: like \edigit.)
.Ip $[ 8 2
The index of the first element in an array, and of the first character in
a substring.
@@ -830,6 +845,10 @@ when subscripting and when evaluating the index() and substr() functions.
.Ip $! 8 2
The current value of errno, with all the usual caveats.
(Mnemonic: What just went bang?)
+.Ip $@ 8 2
+The error message from the last eval command.
+If null, the last eval parsed and executed correctly.
+(Mnemonic: Where was the syntax error "at"?)
.Ip @ARGV 8 3
The array ARGV contains the command line arguments intended for the script.
Note that $#ARGV is the generally number of arguments minus one, since
@@ -882,6 +901,8 @@ commands.
a2p awk to perl translator
.br
s2p sed to perl translator
+.br
+perldb interactive perl debugger
.SH DIAGNOSTICS
Compilation errors will tell you the line number of the error, with an
indication of the next token or token type that was to be examined.
diff --git a/perldb.man b/perldb.man
index 5a4224126d..0cfe0f4fd0 100644
--- a/perldb.man
+++ b/perldb.man
@@ -1,7 +1,10 @@
.rn '' }`
-''' $Header: perldb.man,v 1.0.1.1 88/01/28 10:28:19 root Exp $
+''' $Header: perldb.man,v 1.0.1.2 88/01/30 17:04:48 root Exp $
'''
''' $Log: perldb.man,v $
+''' Revision 1.0.1.2 88/01/30 17:04:48 root
+''' patch 11: random cleanup
+'''
''' Revision 1.0.1.1 88/01/28 10:28:19 root
''' patch8: created this file.
'''
@@ -91,6 +94,7 @@ List the whole program.
List breakpoints.
.Ip t 8
Toggle trace mode.
+Trace mode causes lines to be printed out as they are executed.
.Ip "b line" 8
Set breakpoint at indicated line.
.Ip "d line" 8