diff options
author | Richard A. Wells <Rwells@uhs.harvard.edu> | 1997-09-05 00:00:00 +1200 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-09-05 00:00:00 +1200 |
commit | 50492d440d979148ae8a1d4c450e80c4590a6d76 (patch) | |
tree | 4348e157d42d2d19e1bdb326affe41327bef7f83 /perl.c | |
parent | 9728674739bde9b5cefa9bd69aa235b6068d6a51 (diff) | |
download | perl-50492d440d979148ae8a1d4c450e80c4590a6d76.tar.gz |
typos in perl -h output
Typos in perl -h:
Usage: C:\PERL5.004_01\BIN\PERL.EXE [switches] [--] [programfile] [arguments]
[...]
-Idirectory specify @INC/#include directory (may be used more then once)
^^^^
-l[octal] enable line ending processing, specifies line teminator
^^^^^^^^^
[...]
-n assume 'while (<>) { ... }' loop arround your script
^^^^^^^
[...]
p5p-msgid: 6D0BF914BC@gateuhs.harvard.edu
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1297,10 +1297,10 @@ char *name; printf("\n -e 'command' one line of script. Several -e's allowed. Omit [programfile]."); printf("\n -F/pattern/ split() pattern for autosplit (-a). The //'s are optional."); printf("\n -i[extension] edit <> files in place (make backup if extension supplied)"); - printf("\n -Idirectory specify @INC/#include directory (may be used more then once)"); - printf("\n -l[octal] enable line ending processing, specifies line teminator"); + printf("\n -Idirectory specify @INC/#include directory (may be used more than once)"); + printf("\n -l[octal] enable line ending processing, specifies line terminator"); printf("\n -[mM][-]module.. executes `use/no module...' before executing your script."); - printf("\n -n assume 'while (<>) { ... }' loop arround your script"); + printf("\n -n assume 'while (<>) { ... }' loop around your script"); printf("\n -p assume loop like -n but print line also like sed"); printf("\n -P run script through C preprocessor before compilation"); printf("\n -s enable some switch parsing for switches after script name"); |