October 2006
Beginner
504 pages
12h 58m
English
$_
The most recently read input record.[1]
Used automatically by print and many other built-in functions.
$"
The string inserted between the elements of a hash or array whose @-name appears within double quotes (e.g., “@ARGV”).
Set to a space by default.
$,
The string inserted between the elements of a hash or array whose unquoted %-name or @-name appears in print’s argument list (e.g., print @ARGV).
The string that replaces (unquoted) commas that appear in print’s argument list (e.g., print 'NAME:', 'rygel').
Empty by default.
$0
The name by which the script was invoked (e.g., "pgrep"); for a Perl command, shows "-e".
$$
The process-ID number of the Shell or Perl program.
$.
The ordinal number of the most recently ...