From 50492d440d979148ae8a1d4c450e80c4590a6d76 Mon Sep 17 00:00:00 2001 From: "Richard A. Wells" Date: Fri, 5 Sep 1997 00:00:00 +1200 Subject: [PATCH] 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 --- perl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl.c b/perl.c index 891b76b..11fb462 100644 --- a/perl.c +++ b/perl.c @@ -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"); -- 2.7.4