home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 November / PCWorld_2004-11_cd.bin / software / topware / activeperl / ActivePerl-5.8.4.810-MSWin32-x86.exe / ActivePerl-5.8.4.810 / Perl / bin / psed.bat < prev    next >
DOS Batch File  |  2004-06-01  |  55KB  |  2,006 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S %0 %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec C:\TEMP\perl--------------------------------please-run-the-install-script--------------------------------\bin\perl.exe -S $0 ${1+"$@"}'
  16.     if $running_under_some_shell;
  17. my $startperl;
  18. my $perlpath;
  19. ($startperl = <<'/../') =~ s/\s*\z//;
  20. #!perl
  21. /../
  22. ($perlpath = <<'/../') =~ s/\s*\z//;
  23. C:\TEMP\perl--------------------------------please-run-the-install-script--------------------------------\bin\perl.exe
  24. /../
  25.  
  26. $0 =~ s/^.*?(\w+)[\.\w]*$/$1/;
  27.  
  28. # (p)sed - a stream editor
  29. # History:  Aug 12 2000: Original version.
  30. #           Mar 25 2002: Rearrange generated Perl program.
  31.  
  32. use strict;
  33. use integer;
  34. use Symbol;
  35.  
  36. =head1 NAME
  37.  
  38. psed - a stream editor
  39.  
  40. =head1 SYNOPSIS
  41.  
  42.    psed [-an] script [file ...]
  43.    psed [-an] [-e script] [-f script-file] [file ...]
  44.  
  45.    s2p  [-an] [-e script] [-f script-file]
  46.  
  47. =head1 DESCRIPTION
  48.  
  49. A stream editor reads the input stream consisting of the specified files
  50. (or standard input, if none are given), processes is line by line by
  51. applying a script consisting of edit commands, and writes resulting lines
  52. to standard output. The filename `C<->' may be used to read standard input.
  53.  
  54. The edit script is composed from arguments of B<-e> options and
  55. script-files, in the given order. A single script argument may be specified
  56. as the first parameter.
  57.  
  58. If this program is invoked with the name F<s2p>, it will act as a
  59. sed-to-Perl translator. See L<"sed Script Translation">.
  60.  
  61. B<sed> returns an exit code of 0 on success or >0 if an error occurred.
  62.  
  63. =head1 OPTIONS
  64.  
  65. =over 4
  66.  
  67. =item B<-a>
  68.  
  69. A file specified as argument to the B<w> edit command is by default
  70. opened before input processing starts. Using B<-a>, opening of such
  71. files is delayed until the first line is actually written to the file.
  72.  
  73. =item B<-e> I<script>
  74.  
  75. The editing commands defined by I<script> are appended to the script.
  76. Multiple commands must be separated by newlines.
  77.  
  78. =item B<-f> I<script-file>
  79.  
  80. Editing commands from the specified I<script-file> are read and appended
  81. to the script.
  82.  
  83. =item B<-n>
  84.  
  85. By default, a line is written to standard output after the editing script
  86. has been applied to it. The B<-n> option suppresses automatic printing.
  87.  
  88. =back
  89.  
  90. =head1 COMMANDS
  91.  
  92. B<sed> command syntax is defined as
  93.  
  94. Z<> Z<> Z<> Z<>[I<address>[B<,>I<address>]][B<!>]I<function>[I<argument>]
  95.  
  96. with whitespace being permitted before or after addresses, and between
  97. the function character and the argument. The I<address>es and the
  98. address inverter (C<!>) are used to restrict the application of a
  99. command to the selected line(s) of input.
  100.  
  101. Each command must be on a line of its own, except where noted in
  102. the synopses below.
  103.  
  104. The edit cycle performed on each input line consist of reading the line
  105. (without its trailing newline character) into the I<pattern space>,
  106. applying the applicable commands of the edit script, writing the final
  107. contents of the pattern space and a newline to the standard output.
  108. A I<hold space> is provided for saving the contents of the
  109. pattern space for later use.
  110.  
  111. =head2 Addresses
  112.  
  113. A sed address is either a line number or a pattern, which may be combined
  114. arbitrarily to construct ranges. Lines are numbered across all input files.
  115.  
  116. Any address may be followed by an exclamation mark (`C<!>'), selecting
  117. all lines not matching that address.
  118.  
  119. =over 4
  120.  
  121. =item I<number>
  122.  
  123. The line with the given number is selected.
  124.  
  125. =item B<$>
  126.  
  127. A dollar sign (C<$>) is the line number of the last line of the input stream.
  128.  
  129. =item B</>I<regular expression>B</>
  130.  
  131. A pattern address is a basic regular expression (see 
  132. L<"Basic Regular Expressions">), between the delimiting character C</>.
  133. Any other character except C<\> or newline may be used to delimit a
  134. pattern address when the initial delimiter is prefixed with a
  135. backslash (`C<\>').
  136.  
  137. =back
  138.  
  139. If no address is given, the command selects every line.
  140.  
  141. If one address is given, it selects the line (or lines) matching the
  142. address.
  143.  
  144. Two addresses select a range that begins whenever the first address
  145. matches, and ends (including that line) when the second address matches.
  146. If the first (second) address is a matching pattern, the second 
  147. address is not applied to the very same line to determine the end of
  148. the range. Likewise, if the second address is a matching pattern, the
  149. first address is not applied to the very same line to determine the
  150. begin of another range. If both addresses are line numbers,
  151. and the second line number is less than the first line number, then
  152. only the first line is selected.
  153.  
  154.  
  155. =head2 Functions
  156.  
  157. The maximum permitted number of addresses is indicated with each
  158. function synopsis below.
  159.  
  160. The argument I<text> consists of one or more lines following the command.
  161. Embedded newlines in I<text> must be preceded with a backslash.  Other
  162. backslashes in I<text> are deleted and the following character is taken
  163. literally.
  164.  
  165. =over 4
  166.  
  167. =cut
  168.  
  169. my %ComTab;
  170. my %GenKey;
  171. #--------------------------------------------------------------------------
  172. $ComTab{'a'}=[ 1, 'txt', \&Emit,       '{ push( @Q, <<'."'TheEnd' ) }\n" ]; #ok
  173.  
  174. =item [1addr]B<a\> I<text>
  175.  
  176. Write I<text> (which must start on the line following the command)
  177. to standard output immediately before reading the next line
  178. of input, either by executing the B<N> function or by beginning a new cycle.
  179.  
  180. =cut
  181.  
  182. #--------------------------------------------------------------------------
  183. $ComTab{'b'}=[ 2, 'str', \&Branch,     '{ goto XXX; }'                   ]; #ok
  184.  
  185. =item [2addr]B<b> [I<label>]
  186.  
  187. Branch to the B<:> function with the specified I<label>. If no label
  188. is given, branch to the end of the script.
  189.  
  190. =cut
  191.  
  192. #--------------------------------------------------------------------------
  193. $ComTab{'c'}=[ 2, 'txt', \&Change,     <<'-X-'                           ]; #ok
  194. { print <<'TheEnd'; } $doPrint = 0; goto EOS;
  195. -X-
  196. ### continue OK => next CYCLE;
  197.  
  198. =item [2addr]B<c\> I<text>
  199.  
  200. The line, or range of lines, selected by the address is deleted. 
  201. The I<text> (which must start on the line following the command)
  202. is written to standard output. With an address range, this occurs at
  203. the end of the range.
  204.  
  205. =cut
  206.  
  207. #--------------------------------------------------------------------------
  208. $ComTab{'d'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  209. { $doPrint = 0;
  210.   goto EOS;
  211. }
  212. -X-
  213. ### continue OK => next CYCLE;
  214.  
  215. =item [2addr]B<d>
  216.  
  217. Deletes the pattern space and starts the next cycle.
  218.  
  219. =cut
  220.  
  221. #--------------------------------------------------------------------------
  222. $ComTab{'D'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  223. { s/^.*\n?//;
  224.   if(length($_)){ goto BOS } else { goto EOS }
  225. }
  226. -X-
  227. ### continue OK => next CYCLE;
  228.  
  229. =item [2addr]B<D>
  230.  
  231. Deletes the pattern space through the first embedded newline or to the end.
  232. If the pattern space becomes empty, a new cycle is started, otherwise
  233. execution of the script is restarted.
  234.  
  235. =cut
  236.  
  237. #--------------------------------------------------------------------------
  238. $ComTab{'g'}=[ 2, '',    \&Emit,       '{ $_ = $Hold };'                 ]; #ok
  239.  
  240. =item [2addr]B<g>
  241.  
  242. Replace the contents of the pattern space with the hold space.
  243.  
  244. =cut
  245.  
  246. #--------------------------------------------------------------------------
  247. $ComTab{'G'}=[ 2, '',    \&Emit,       '{ $_ .= "\n"; $_ .= $Hold };'    ]; #ok
  248.  
  249. =item [2addr]B<G>
  250.  
  251. Append a newline and the contents of the hold space to the pattern space.
  252.  
  253. =cut
  254.  
  255. #--------------------------------------------------------------------------
  256. $ComTab{'h'}=[ 2, '',    \&Emit,       '{ $Hold = $_ }'                  ]; #ok
  257.  
  258. =item [2addr]B<h>
  259.  
  260. Replace the contents of the hold space with the pattern space.
  261.  
  262. =cut
  263.  
  264. #--------------------------------------------------------------------------
  265. $ComTab{'H'}=[ 2, '',    \&Emit,       '{ $Hold .= "\n"; $Hold .= $_; }' ]; #ok
  266.  
  267. =item [2addr]B<H>
  268.  
  269. Append a newline and the contents of the pattern space to the hold space.
  270.  
  271. =cut
  272.  
  273. #--------------------------------------------------------------------------
  274. $ComTab{'i'}=[ 1, 'txt', \&Emit,       '{ print <<'."'TheEnd' }\n"       ]; #ok
  275.  
  276. =item [1addr]B<i\> I<text>
  277.  
  278. Write the I<text> (which must start on the line following the command)
  279. to standard output.
  280.  
  281. =cut
  282.  
  283. #--------------------------------------------------------------------------
  284. $ComTab{'l'}=[ 2, '',    \&Emit,       '{ _l() }'                        ]; #okUTF8
  285.  
  286. =item [2addr]B<l>
  287.  
  288. Print the contents of the pattern space: non-printable characters are
  289. shown in C-style escaped form; long lines are split and have a trailing
  290. `C<\>' at the point of the split; the true end of a line is marked with
  291. a `C<$>'. Escapes are: `\a', `\t', `\n', `\f', `\r', `\e' for
  292. BEL, HT, LF, FF, CR, ESC, respectively, and `\' followed by a three-digit
  293. octal number for all other non-printable characters.
  294.  
  295. =cut
  296.  
  297. #--------------------------------------------------------------------------
  298. $ComTab{'n'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  299. { print $_, "\n" if $doPrint;
  300.   printQ() if @Q;
  301.   $CondReg = 0;
  302.   last CYCLE unless getsARGV();
  303.   chomp();
  304. }
  305. -X-
  306.  
  307. =item [2addr]B<n>
  308.  
  309. If automatic printing is enabled, write the pattern space to the standard
  310. output. Replace the pattern space with the next line of input. If
  311. there is no more input, processing is terminated.
  312.  
  313. =cut
  314.  
  315. #--------------------------------------------------------------------------
  316. $ComTab{'N'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  317. { printQ() if @Q;
  318.   $CondReg = 0;
  319.   last CYCLE unless getsARGV( $h );
  320.   chomp( $h );
  321.   $_ .= "\n$h";
  322. }
  323. -X-
  324.  
  325. =item [2addr]B<N>
  326.  
  327. Append a newline and the next line of input to the pattern space. If
  328. there is no more input, processing is terminated.
  329.  
  330. =cut
  331.  
  332. #--------------------------------------------------------------------------
  333. $ComTab{'p'}=[ 2, '',    \&Emit,       '{ print $_, "\n"; }'             ]; #ok
  334.  
  335. =item [2addr]B<p>
  336.  
  337. Print the pattern space to the standard output. (Use the B<-n> option
  338. to suppress automatic printing at the end of a cycle if you want to
  339. avoid double printing of lines.)
  340.  
  341. =cut
  342.  
  343. #--------------------------------------------------------------------------
  344. $ComTab{'P'}=[ 2, '',    \&Emit,       <<'-X-'                           ]; #ok
  345. { if( /^(.*)/ ){ print $1, "\n"; } }
  346. -X-
  347.  
  348. =item [2addr]B<P>
  349.  
  350. Prints the pattern space through the first embedded newline or to the end.
  351.  
  352. =cut
  353.  
  354. #--------------------------------------------------------------------------
  355. $ComTab{'q'}=[ 1, '',    \&Emit,       <<'-X-'                           ]; #ok
  356. { print $_, "\n" if $doPrint;
  357.   last CYCLE;
  358. }
  359. -X-
  360.  
  361. =item [1addr]B<q>
  362.  
  363. Branch to the end of the script and quit without starting a new cycle.
  364.  
  365. =cut
  366.  
  367. #--------------------------------------------------------------------------
  368. $ComTab{'r'}=[ 1, 'str', \&Emit,       "{ _r( '-X-' ) }"                 ]; #ok
  369.  
  370. =item [1addr]B<r> I<file>
  371.  
  372. Copy the contents of the I<file> to standard output immediately before
  373. the next attempt to read a line of input. Any error encountered while
  374. reading I<file> is silently ignored.
  375.  
  376. =cut
  377.  
  378. #--------------------------------------------------------------------------
  379. $ComTab{'s'}=[ 2, 'sub', \&Emit,       ''                                ]; #ok
  380.  
  381. =item [2addr]B<s/>I<regular expression>B</>I<replacement>B</>I<flags>
  382.  
  383. Substitute the I<replacement> string for the first substring in
  384. the pattern space that matches the I<regular expression>.
  385. Any character other than backslash or newline can be used instead of a 
  386. slash to delimit the regular expression and the replacement.
  387. To use the delimiter as a literal character within the regular expression
  388. and the replacement, precede the character by a backslash (`C<\>').
  389.  
  390. Literal newlines may be embedded in the replacement string by
  391. preceding a newline with a backslash.
  392.  
  393. Within the replacement, an ampersand (`C<&>') is replaced by the string
  394. matching the regular expression. The strings `C<\1>' through `C<\9>' are
  395. replaced by the corresponding subpattern (see L<"Basic Regular Expressions">).
  396. To get a literal `C<&>' or `C<\>' in the replacement text, precede it
  397. by a backslash.
  398.  
  399. The following I<flags> modify the behaviour of the B<s> command:
  400.  
  401. =over 8
  402.  
  403. =item B<g>
  404.  
  405. The replacement is performed for all matching, non-overlapping substrings
  406. of the pattern space.
  407.  
  408. =item B<1>..B<9>
  409.  
  410. Replace only the n-th matching substring of the pattern space.
  411.  
  412. =item B<p>
  413.  
  414. If the substitution was made, print the new value of the pattern space.
  415.  
  416. =item B<w> I<file>
  417.  
  418. If the substitution was made, write the new value of the pattern space
  419. to the specified file.
  420.  
  421. =back
  422.  
  423. =cut
  424.  
  425. #--------------------------------------------------------------------------
  426. $ComTab{'t'}=[ 2, 'str', \&Branch,     '{ goto XXX if _t() }'            ]; #ok
  427.  
  428. =item [2addr]B<t> [I<label>]
  429.  
  430. Branch to the B<:> function with the specified I<label> if any B<s>
  431. substitutions have been made since the most recent reading of an input line
  432. or execution of a B<t> function. If no label is given, branch to the end of
  433. the script. 
  434.  
  435.  
  436. =cut
  437.  
  438. #--------------------------------------------------------------------------
  439. $ComTab{'w'}=[ 2, 'str', \&Write,      "{ _w( '-X-' ) }"                 ]; #ok
  440.  
  441. =item [2addr]B<w> I<file>
  442.  
  443. The contents of the pattern space are written to the I<file>.
  444.  
  445. =cut
  446.  
  447. #--------------------------------------------------------------------------
  448. $ComTab{'x'}=[ 2, '',    \&Emit,       '{ ($Hold, $_) = ($_, $Hold) }'   ]; #ok
  449.  
  450. =item [2addr]B<x>
  451.  
  452. Swap the contents of the pattern space and the hold space.
  453.  
  454. =cut
  455.  
  456. #--------------------------------------------------------------------------
  457. $ComTab{'y'}=[ 2, 'tra', \&Emit,       ''                                ]; #ok
  458. =item [2addr]B<y>B</>I<string1>B</>I<string2>B</>
  459.  
  460. In the pattern space, replace all characters occuring in I<string1> by the
  461. character at the corresponding position in I<string2>. It is possible
  462. to use any character (other than a backslash or newline) instead of a
  463. slash to delimit the strings.  Within I<string1> and I<string2>, a
  464. backslash followed by any character other than a newline is that literal
  465. character, and a backslash followed by an `n' is replaced by a newline
  466. character.
  467.  
  468. =cut
  469.  
  470. #--------------------------------------------------------------------------
  471. $ComTab{'='}=[ 1, '',    \&Emit,       '{ print "$.\n" }'                ]; #ok
  472.  
  473. =item [1addr]B<=>
  474.  
  475. Prints the current line number on the standard output.
  476.  
  477. =cut
  478.  
  479. #--------------------------------------------------------------------------
  480. $ComTab{':'}=[ 0, 'str', \&Label,      ''                                ]; #ok
  481.  
  482. =item [0addr]B<:> [I<label>]
  483.  
  484. The command specifies the position of the I<label>. It has no other effect.
  485.  
  486. =cut
  487.  
  488. #--------------------------------------------------------------------------
  489. $ComTab{'{'}=[ 2, '',    \&BeginBlock, '{'                               ]; #ok
  490. $ComTab{'}'}=[ 0, '',    \&EndBlock,   ';}'                              ]; #ok
  491. # ';' to avoid warning on empty {}-block
  492.  
  493. =item [2addr]B<{> [I<command>]
  494.  
  495. =item [0addr]B<}>
  496.  
  497. These two commands begin and end a command list. The first command may
  498. be given on the same line as the opening B<{> command. The commands
  499. within the list are jointly selected by the address(es) given on the
  500. B<{> command (but may still have individual addresses).
  501.  
  502. =cut
  503.  
  504. #--------------------------------------------------------------------------
  505. $ComTab{'#'}=[ 0, 'str', \&Comment,    ''                                ]; #ok
  506.  
  507. =item [0addr]B<#> [I<comment>]
  508.  
  509. The entire line is ignored (treated as a comment). If, however, the first
  510. two characters in the script are `C<#n>', automatic printing of output is
  511. suppressed, as if the B<-n> option were given on the command line.
  512.  
  513. =back
  514.  
  515. =cut
  516.  
  517. use vars qw{ $isEOF $Hold %wFiles @Q $CondReg $doPrint };
  518.  
  519. my $useDEBUG    = exists( $ENV{PSEDDEBUG} );
  520. my $useEXTBRE   = $ENV{PSEDEXTBRE} || '';
  521. $useEXTBRE =~ s/[^<>wWyB]//g; # gawk RE's handle these
  522.  
  523. my $doAutoPrint = 1;          # automatic printing of pattern space (-n => 0)
  524. my $doOpenWrite = 1;          # open w command output files at start (-a => 0)
  525. my $svOpenWrite = 0;          # save $doOpenWrite
  526. my $doGenerate  = $0 eq 's2p';
  527.  
  528. # Collected and compiled script
  529. #
  530. my( @Commands, %Defined, @BlockStack, %Label, $labNum, $Code, $Func );
  531. $Code = '';
  532.  
  533. ##################
  534. #  Compile Time
  535. #
  536. # Labels
  537. # Error handling
  538. #
  539. sub Warn($;$){
  540.     my( $msg, $loc ) = @_;
  541.     $loc ||= '';
  542.     $loc .= ': ' if length( $loc );
  543.     warn( "$0: $loc$msg\n" );
  544. }
  545.  
  546. $labNum = 0;
  547. sub newLabel(){
  548.     return 'L_'.++$labNum;
  549. }
  550.  
  551. # safeHere: create safe here delimiter and  modify opcode and argument
  552. #
  553. sub safeHere($$){
  554.     my( $codref, $argref ) = @_;
  555.     my $eod = 'EOD000';
  556.     while( $$argref =~ /^$eod$/m ){
  557.         $eod++;
  558.     }
  559.     $$codref =~ s/TheEnd/$eod/e;
  560.     $$argref .= "$eod\n"; 
  561. }
  562.  
  563. # Emit: create address logic and emit command
  564. #
  565. sub Emit($$$$$$){
  566.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  567.     my $cond = '';
  568.     if( defined( $addr1 ) ){
  569.         if( defined( $addr2 ) ){
  570.         $addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
  571.         } else {
  572.         $addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
  573.     }
  574.     $cond = $negated ? "unless( $addr1 )\n" : "if( $addr1 )\n";
  575.     }
  576.  
  577.     if( $opcode eq '' ){
  578.     $Code .= "$cond$arg\n";
  579.  
  580.     } elsif( $opcode =~ s/-X-/$arg/e ){
  581.     $Code .= "$cond$opcode\n";
  582.  
  583.     } elsif( $opcode =~ /TheEnd/ ){
  584.     safeHere( \$opcode, \$arg );
  585.     $Code .= "$cond$opcode$arg";
  586.  
  587.     } else {
  588.     $Code .= "$cond$opcode\n";
  589.     }
  590.     0;
  591. }
  592.  
  593. # Write (w command, w flag): store pathname
  594. #
  595. sub Write($$$$$$){
  596.     my( $addr1, $addr2, $negated, $opcode, $path, $fl ) = @_;
  597.     $wFiles{$path} = '';
  598.     Emit( $addr1, $addr2, $negated, $opcode, $path, $fl );
  599. }
  600.  
  601.  
  602. # Label (: command): label definition
  603. #
  604. sub Label($$$$$$){
  605.     my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
  606.     my $rc = 0;
  607.     $lab =~ s/\s+//;
  608.     if( length( $lab ) ){
  609.     my $h;
  610.     if( ! exists( $Label{$lab} ) ){
  611.         $h = $Label{$lab}{name} = newLabel();
  612.         } else {
  613.         $h = $Label{$lab}{name};
  614.         if( exists( $Label{$lab}{defined} ) ){
  615.         my $dl = $Label{$lab}{defined};
  616.         Warn( "duplicate label $lab (first defined at $dl)", $fl );
  617.         $rc = 1;
  618.         }
  619.     }
  620.         $Label{$lab}{defined} = $fl;
  621.     $Code .= "$h:;\n";
  622.     }
  623.     $rc;
  624. }
  625.  
  626. # BeginBlock ({ command): push block start
  627. #
  628. sub BeginBlock($$$$$$){
  629.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  630.     push( @BlockStack, [ $fl, $addr1, $addr2, $negated ] );
  631.     Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
  632. }
  633.  
  634. # EndBlock (} command): check proper nesting
  635. #
  636. sub EndBlock($$$$$$){
  637.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  638.     my $rc;
  639.     my $jcom = pop( @BlockStack );
  640.     if( defined( $jcom ) ){
  641.     $rc = Emit( $addr1, $addr2, $negated, $opcode, $arg, $fl );
  642.     } else {
  643.     Warn( "unexpected `}'", $fl );
  644.     $rc = 1;
  645.     }
  646.     $rc;
  647. }
  648.  
  649. # Branch (t, b commands): check or create label, substitute default
  650. #
  651. sub Branch($$$$$$){
  652.     my( $addr1, $addr2, $negated, $opcode, $lab, $fl ) = @_;
  653.     $lab =~ s/\s+//; # no spaces at end
  654.     my $h;
  655.     if( length( $lab ) ){
  656.     if( ! exists( $Label{$lab} ) ){
  657.         $h = $Label{$lab}{name} = newLabel();
  658.         } else {
  659.         $h = $Label{$lab}{name};
  660.     }
  661.     push( @{$Label{$lab}{used}}, $fl );
  662.     } else {
  663.     $h = 'EOS';
  664.     }
  665.     $opcode =~ s/XXX/$h/e;
  666.     Emit( $addr1, $addr2, $negated, $opcode, '', $fl );
  667. }
  668.  
  669. # Change (c command): is special due to range end watching
  670. #
  671. sub Change($$$$$$){
  672.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  673.     my $kwd = $negated ? 'unless' : 'if';
  674.     if( defined( $addr2 ) ){
  675.         $addr1 .= $addr2 =~ /^\d+$/ ? "..$addr2" : "...$addr2";
  676.     if( ! $negated ){
  677.         $addr1  = '$icnt = ('.$addr1.')';
  678.         $opcode = 'if( $icnt =~ /E0$/ )' . $opcode;
  679.     }
  680.     } else {
  681.     $addr1 .= ' == $.' if $addr1 =~ /^\d+$/;
  682.     }
  683.     safeHere( \$opcode, \$arg );
  684.     $Code .= "$kwd( $addr1 ){\n  $opcode$arg}\n";
  685.     0;
  686. }
  687.  
  688.  
  689. # Comment (# command): A no-op. Who would've thought that!
  690. #
  691. sub Comment($$$$$$){
  692.     my( $addr1, $addr2, $negated, $opcode, $arg, $fl ) = @_;
  693. ### $Code .= "# $arg\n";
  694.     0;
  695. }
  696.  
  697.  
  698. sub stripRegex($$){
  699.     my( $del, $sref ) = @_;
  700.     my $regex = $del;
  701.     print "stripRegex:$del:$$sref:\n" if $useDEBUG;
  702.     while( $$sref =~ s{^(.*?)(\\*)\Q$del\E(\s*)}{}s ){
  703.         my $sl = $2;
  704.     $regex .= $1.$sl.$del;
  705.     if( length( $sl ) % 2 == 0 ){
  706.         return $regex;
  707.     }
  708.     $regex .= $3;
  709.     }
  710.     undef();
  711. }
  712.  
  713. # stripTrans: take a <del> terminated string from y command
  714. #   honoring and cleaning up of \-escaped <del>'s
  715. #
  716. sub stripTrans($$){
  717.     my( $del, $sref ) = @_;
  718.     my $t = '';
  719.     print "stripTrans:$del:$$sref:\n" if $useDEBUG;
  720.     while( $$sref =~ s{^(.*?)(\\*)\Q$del\E}{}s ){
  721.         my $sl = $2;
  722.     $t .= $1;
  723.     if( length( $sl ) % 2 == 0 ){
  724.         $t .= $sl;
  725.         $t =~ s/\\\\/\\/g;
  726.         return $t;
  727.     }
  728.     chop( $sl );
  729.     $t .= $sl.$del.$3;
  730.     }
  731.     undef();
  732. }
  733.  
  734. # makey - construct Perl y/// from sed y///
  735. #
  736. sub makey($$$){
  737.     my( $fr, $to, $fl ) = @_;
  738.     my $error = 0;
  739.  
  740.     # Ensure that any '-' is up front.
  741.     # Diagnose duplicate contradicting mappings
  742.     my %tr;
  743.     for( my $i = 0; $i < length($fr); $i++ ){
  744.     my $fc = substr($fr,$i,1);
  745.     my $tc = substr($to,$i,1);
  746.     if( exists( $tr{$fc} ) && $tr{$fc} ne $tc ){
  747.         Warn( "ambiguous translation for character `$fc' in `y' command",
  748.           $fl );
  749.         $error++;
  750.     }
  751.     $tr{$fc} = $tc;
  752.     }
  753.     $fr = $to = '';
  754.     if( exists( $tr{'-'} ) ){
  755.     ( $fr, $to ) = ( '-', $tr{'-'} );
  756.     delete( $tr{'-'} );
  757.     } else {
  758.     $fr = $to = '';
  759.     }
  760.     # might just as well sort it...
  761.     for my $fc ( sort keys( %tr ) ){
  762.     $fr .= $fc;
  763.     $to .= $tr{$fc};
  764.     }
  765.     # make embedded delimiters and newlines safe
  766.     $fr =~ s/([{}])/\$1/g;
  767.     $to =~ s/([{}])/\$1/g;
  768.     $fr =~ s/\n/\\n/g;
  769.     $to =~ s/\n/\\n/g;
  770.     return $error ? undef() : "{ y{$fr}{$to}; }";
  771. }
  772.  
  773. ######
  774. # makes - construct Perl s/// from sed s///
  775. #
  776. sub makes($$$$$$$){
  777.     my( $regex, $subst, $path, $global, $print, $nmatch, $fl ) = @_;
  778.  
  779.     # make embedded newlines safe
  780.     $regex =~ s/\n/\\n/g;
  781.     $subst =~ s/\n/\\n/g;
  782.  
  783.     my $code;
  784.     # n-th occurrence
  785.     #
  786.     if( length( $nmatch ) ){
  787.     $code = <<TheEnd;
  788. { \$n = $nmatch;
  789.   while( --\$n && ( \$s = m ${regex}g ) ){}
  790.   \$s = ( substr( \$_, pos() ) =~ s ${regex}${subst}s ) if \$s;
  791.   \$CondReg ||= \$s;
  792. TheEnd
  793.     } else {
  794.         $code = <<TheEnd;
  795. { \$s = s ${regex}${subst}s${global};
  796.   \$CondReg ||= \$s;
  797. TheEnd
  798.     }
  799.     if( $print ){
  800.         $code .= '  print $_, "\n" if $s;'."\n";
  801.     }
  802.     if( defined( $path ) ){
  803.         $wFiles{$path} = '';
  804.     $code .= " _w( '$path' ) if \$s;\n";
  805.         $GenKey{'w'} = 1;
  806.     }
  807.     $code .= "}";
  808. }
  809.  
  810. =head1 BASIC REGULAR EXPRESSIONS
  811.  
  812. A I<Basic Regular Expression> (BRE), as defined in POSIX 1003.2, consists
  813. of I<atoms>, for matching parts of a string, and I<bounds>, specifying
  814. repetitions of a preceding atom.
  815.  
  816. =head2 Atoms
  817.  
  818. The possible atoms of a BRE are: B<.>, matching any single character;
  819. B<^> and B<$>, matching the null string at the beginning or end
  820. of a string, respectively; a I<bracket expressions>, enclosed
  821. in B<[> and B<]> (see below); and any single character with no
  822. other significance (matching that character). A B<\> before one
  823. of: B<.>, B<^>, B<$>, B<[>, B<*>, B<\>, matching the character
  824. after the backslash. A sequence of atoms enclosed in B<\(> and B<\)>
  825. becomes an atom and establishes the target for a I<backreference>,
  826. consisting of the substring that actually matches the enclosed atoms.
  827. Finally, B<\> followed by one of the digits B<0> through B<9> is a
  828. backreference.
  829.  
  830. A B<^> that is not first, or a B<$> that is not last does not have
  831. a special significance and need not be preceded by a backslash to
  832. become literal. The same is true for a B<]>, that does not terminate
  833. a bracket expression.
  834.  
  835. An unescaped backslash cannot be last in a BRE.
  836.  
  837. =head2 Bounds
  838.  
  839. The BRE bounds are: B<*>, specifying 0 or more matches of the preceding
  840. atom; B<\{>I<count>B<\}>, specifying that many repetitions;
  841. B<\{>I<minimum>B<,\}>, giving a lower limit; and
  842. B<\{>I<minimum>B<,>I<maximum>B<\}> finally defines a lower and upper
  843. bound. 
  844.  
  845. A bound appearing as the first item in a BRE is taken literally.
  846.  
  847. =head2 Bracket Expressions
  848.  
  849. A I<bracket expression> is a list of characters, character ranges
  850. and character classes enclosed in B<[> and B<]> and matches any
  851. single character from the represented set of characters.
  852.  
  853. A character range is written as two characters separated by B<-> and
  854. represents all characters (according to the character collating sequence)
  855. that are not less than the first and not greater than the second.
  856. (Ranges are very collating-sequence-dependent, and portable programs
  857. should avoid relying on them.)
  858.  
  859. A character class is one of the class names
  860.  
  861.    alnum     digit     punct
  862.    alpha     graph     space
  863.    blank     lower     upper
  864.    cntrl     print     xdigit
  865.  
  866. enclosed in B<[:> and B<:]> and represents the set of characters
  867. as defined in ctype(3).
  868.  
  869. If the first character after B<[> is B<^>, the sense of matching is
  870. inverted.
  871.  
  872. To include a literal `C<^>', place it anywhere else but first. To
  873. include a literal 'C<]>' place it first or immediately after an
  874. initial B<^>. To include a literal `C<->' make it the first (or
  875. second after B<^>) or last character, or the second endpoint of
  876. a range.
  877.  
  878. The special bracket expression constructs C<[[:E<lt>:]]> and C<[[:E<gt>:]]> 
  879. match the null string at the beginning and end of a word respectively.
  880. (Note that neither is identical to Perl's `\b' atom.)
  881.  
  882. =head2 Additional Atoms
  883.  
  884. Since some sed implementations provide additional regular expression
  885. atoms (not defined in POSIX 1003.2), B<psed> is capable of translating
  886. the following backslash escapes:
  887.  
  888. =over 4
  889.  
  890. =item B<\E<lt>> This is the same as C<[[:E<gt>:]]>.
  891.  
  892. =item B<\E<gt>> This is the same as C<[[:E<lt>:]]>.
  893.  
  894. =item B<\w> This is an abbreviation for C<[[:alnum:]_]>.
  895.  
  896. =item B<\W> This is an abbreviation for C<[^[:alnum:]_]>.
  897.  
  898. =item B<\y> Match the empty string at a word boundary.
  899.  
  900. =item B<\B> Match the empty string between any two either word or non-word characters.
  901.  
  902. =back
  903.  
  904. To enable this feature, the environment variable PSEDEXTBRE must be set
  905. to a string containing the requested characters, e.g.:
  906. C<PSEDEXTBRE='E<lt>E<gt>wW'>.
  907.  
  908. =cut
  909.  
  910. #####
  911. # bre2p - convert BRE to Perl RE
  912. #
  913. sub peek(\$$){
  914.     my( $pref, $ic ) = @_;
  915.     $ic < length($$pref)-1 ? substr( $$pref, $ic+1, 1 ) : '';
  916. }
  917.  
  918. sub bre2p($$$){
  919.     my( $del, $pat, $fl ) = @_;
  920.     my $led = $del;
  921.     $led =~ tr/{([</})]>/;
  922.     $led = '' if $led eq $del;
  923.  
  924.     $pat = substr( $pat, 1, length($pat) - 2 );
  925.     my $res = '';
  926.     my $bracklev = 0;
  927.     my $backref  = 0;
  928.     my $parlev = 0;
  929.     for( my $ic = 0; $ic < length( $pat ); $ic++ ){
  930.         my $c = substr( $pat, $ic, 1 );
  931.         if( $c eq '\\' ){
  932.         ### backslash escapes
  933.             my $nc = peek($pat,$ic);
  934.             if( $nc eq '' ){
  935.                 Warn( "`\\' cannot be last in pattern", $fl );
  936.                 return undef();
  937.             }
  938.         $ic++;
  939.             if( $nc eq $del ){ ## \<pattern del> => \<pattern del>
  940.                 $res .= "\\$del";
  941.  
  942.         } elsif( $nc =~ /([[.*\\n])/ ){
  943.         ## check for \-escaped magics and \n:
  944.         ## \[ \. \* \\ \n stay as they are
  945.                 $res .= '\\'.$nc;
  946.  
  947.             } elsif( $nc eq '(' ){ ## \( => (
  948.                 $parlev++;
  949.                 $res .= '(';
  950.  
  951.             } elsif( $nc eq ')' ){ ## \) => )
  952.                 $parlev--;
  953.         $backref++;
  954.                 if( $parlev < 0 ){
  955.                     Warn( "unmatched `\\)'", $fl );
  956.                     return undef();
  957.                 }
  958.                 $res .= ')';
  959.  
  960.             } elsif( $nc eq '{' ){ ## repetition factor \{<i>[,[<j>]]\}
  961.                 my $endpos = index( $pat, '\\}', $ic );
  962.                 if( $endpos < 0 ){
  963.                     Warn( "unmatched `\\{'", $fl );
  964.                     return undef();
  965.                 }
  966.                 my $rep = substr( $pat, $ic+1, $endpos-($ic+1) );
  967.                 $ic = $endpos + 1;
  968.  
  969.               if( $res =~ /^\^?$/ ){
  970.             $res .= "\\{$rep\}";
  971.                 } elsif( $rep =~ /^(\d+)(,?)(\d*)?$/ ){
  972.                     my $min = $1;
  973.                     my $com = $2 || '';
  974.                     my $max = $3;
  975.                     if( length( $max ) ){
  976.                         if( $max < $min ){
  977.                             Warn( "maximum less than minimum in `\\{$rep\\}'",
  978.                   $fl );
  979.                             return undef();
  980.                         }
  981.                     } else {
  982.                         $max = '';
  983.                     }
  984.             # simplify some
  985.             if( $min == 0 && $max eq '1' ){
  986.             $res .= '?';
  987.             } elsif( $min == 1 && "$com$max" eq ',' ){
  988.             $res .= '+';
  989.             } elsif( $min == 0 && "$com$max" eq ',' ){
  990.             $res .= '*';
  991.             } else {
  992.             $res .= "{$min$com$max}";
  993.             }
  994.                 } else {
  995.                     Warn( "invalid repeat clause `\\{$rep\\}'", $fl );
  996.                     return undef();
  997.                 }
  998.  
  999.             } elsif( $nc =~ /^[1-9]$/ ){
  1000.         ## \1 .. \9 => \1 .. \9, but check for a following digit
  1001.         if( $nc > $backref ){
  1002.                     Warn( "invalid backreference ($nc)", $fl );
  1003.                     return undef();
  1004.         }
  1005.                 $res .= "\\$nc";
  1006.         if( peek($pat,$ic) =~ /[0-9]/ ){
  1007.             $res .= '(?:)';
  1008.         }
  1009.  
  1010.             } elsif( $useEXTBRE && ( $nc =~ /[$useEXTBRE]/ ) ){
  1011.         ## extensions - at most <>wWyB - not in POSIX
  1012.                 if(      $nc eq '<' ){ ## \< => \b(?=\w), be precise
  1013.                     $res .= '\\b(?<=\\W)';
  1014.                 } elsif( $nc eq '>' ){ ## \> => \b(?=\W), be precise
  1015.                     $res .= '\\b(?=\\W)';
  1016.                 } elsif( $nc eq 'y' ){ ## \y => \b
  1017.                     $res .= '\\b';
  1018.                 } else {               ## \B, \w, \W remain the same
  1019.                     $res .= "\\$nc";
  1020.                 } 
  1021.         } elsif( $nc eq $led ){
  1022.         ## \<closing bracketing-delimiter> - keep '\'
  1023.         $res .= "\\$nc";
  1024.  
  1025.             } else { ## \ <char> => <char> ("as if `\' were not present")
  1026.                 $res .= $nc;
  1027.             }
  1028.  
  1029.         } elsif( $c eq '.' ){ ## . => .
  1030.             $res .= $c;
  1031.  
  1032.     } elsif( $c eq '*' ){ ## * => * but \* if there's nothing preceding it
  1033.         if( $res =~ /^\^?$/ ){
  1034.                 $res .= '\\*';
  1035.             } elsif( substr( $res, -1, 1 ) ne '*' ){
  1036.         $res .= $c;
  1037.         }
  1038.  
  1039.         } elsif( $c eq '[' ){
  1040.         ## parse []: [^...] [^]...] [-...]
  1041.         my $add = '[';
  1042.         if( peek($pat,$ic) eq '^' ){
  1043.         $ic++;
  1044.         $add .= '^';
  1045.         }
  1046.         my $nc = peek($pat,$ic);
  1047.           if( $nc eq ']' || $nc eq '-' ){
  1048.         $add .= $nc;
  1049.                 $ic++;
  1050.         }
  1051.         # check that [ is not trailing
  1052.         if( $ic >= length( $pat ) - 1 ){
  1053.         Warn( "unmatched `['", $fl );
  1054.         return undef();
  1055.         }
  1056.         # look for [:...:] and x-y
  1057.         my $rstr = substr( $pat, $ic+1 );
  1058.         if( $rstr =~ /^((?:\[:\(\w+|[><]\):\]|[^]-](?:-[^]])?)*)/ ){
  1059.              my $cnt = $1;
  1060.         $ic += length( $cnt );
  1061.         $cnt =~ s/([\\\$])/\\$1/g; # `\', `$' are magic in Perl []
  1062.         # try some simplifications
  1063.              my $red = $cnt;
  1064.         if( $red =~ s/0-9// ){
  1065.             $cnt = $red.'\d';
  1066.             if( $red =~ s/A-Z// && $red =~ s/a-z// && $red =~ s/_// ){
  1067.             $cnt = $red.'\w';
  1068.                     }
  1069.         }
  1070.         $add .= $cnt;
  1071.  
  1072.         # POSIX 1003.2 has this (optional) for begin/end word
  1073.         $add = '\\b(?=\\W)'  if $add eq '[[:<:]]';
  1074.         $add = '\\b(?<=\\W)' if $add eq '[[:>:]]';
  1075.  
  1076.         }
  1077.  
  1078.         ## may have a trailing `-' before `]'
  1079.         if( $ic < length($pat) - 1 &&
  1080.                 substr( $pat, $ic+1 ) =~ /^(-?])/ ){
  1081.         $ic += length( $1 );
  1082.         $add .= $1;
  1083.         # another simplification
  1084.         $add =~ s/^\[(\^?)(\\[dw])]$/ $1 eq '^' ? uc($2) : $2 /e;
  1085.         $res .= $add;
  1086.         } else {
  1087.         Warn( "unmatched `['", $fl );
  1088.         return undef();
  1089.         }
  1090.  
  1091.         } elsif( $c eq $led ){ ## unescaped <closing bracketing-delimiter>
  1092.             $res .= "\\$c";
  1093.  
  1094.         } elsif( $c eq ']' ){ ## unmatched ] is not magic
  1095.             $res .= ']';
  1096.  
  1097.         } elsif( $c =~ /[|+?{}()]/ ){ ## not magic in BRE, but in Perl: \-quote
  1098.             $res .= "\\$c";
  1099.  
  1100.         } elsif( $c eq '^' ){ ## not magic unless 1st, but in Perl: \-quote
  1101.             $res .= length( $res ) ? '\\^' : '^';
  1102.  
  1103.         } elsif( $c eq '$' ){ ## not magic unless last, but in Perl: \-quote
  1104.             $res .= $ic == length( $pat ) - 1 ? '$' : '\\$';
  1105.  
  1106.         } else {
  1107.             $res .= $c;
  1108.         }
  1109.     }
  1110.  
  1111.     if( $parlev ){
  1112.        Warn( "unmatched `\\('", $fl );
  1113.        return undef();
  1114.     }
  1115.  
  1116.     # final cleanup: eliminate raw HTs
  1117.     $res =~ s/\t/\\t/g;
  1118.     return $del . $res . ( $led ? $led : $del );
  1119. }
  1120.  
  1121.  
  1122. #####
  1123. # sub2p - convert sed substitution to Perl substitution
  1124. #
  1125. sub sub2p($$$){
  1126.     my( $del, $subst, $fl ) = @_;
  1127.     my $led = $del;
  1128.     $led =~ tr/{([</})]>/;
  1129.     $led = '' if $led eq $del;
  1130.  
  1131.     $subst = substr( $subst, 1, length($subst) - 2 );
  1132.     my $res = '';
  1133.  
  1134.     for( my $ic = 0; $ic < length( $subst ); $ic++ ){
  1135.         my $c = substr( $subst, $ic, 1 );
  1136.         if( $c eq '\\' ){
  1137.         ### backslash escapes
  1138.             my $nc = peek($subst,$ic);
  1139.             if( $nc eq '' ){
  1140.                 Warn( "`\\' cannot be last in substitution", $fl );
  1141.                 return undef();
  1142.             }
  1143.         $ic++;
  1144.         if( $nc =~ /[\\$del$led]/ ){ ## \ and delimiter
  1145.         $res .= '\\' . $nc;
  1146.             } elsif( $nc =~ /[1-9]/ ){ ## \1 - \9 => ${1} - ${9}
  1147.                 $res .= '${' . $nc . '}';
  1148.         } else { ## everything else (includes &): omit \
  1149.         $res .= $nc;
  1150.         }
  1151.         } elsif( $c eq '&' ){ ## & => $&
  1152.             $res .= '$&';
  1153.     } elsif( $c =~ /[\$\@$led]/ ){ ## magic in Perl's substitution string
  1154.         $res .= '\\' . $c;
  1155.         } else {
  1156.         $res .= $c;
  1157.     }
  1158.     }
  1159.  
  1160.     # final cleanup: eliminate raw HTs
  1161.     $res =~ s/\t/\\t/g;
  1162.     return ( $led ? $del : $led ) . $res . ( $led ? $led : $del );
  1163. }
  1164.  
  1165.  
  1166. sub Parse(){
  1167.     my $error = 0;
  1168.     my( $pdef, $pfil, $plin );
  1169.     for( my $icom = 0; $icom < @Commands; $icom++ ){
  1170.     my $cmd = $Commands[$icom];
  1171.     print "Parse:$cmd:\n" if $useDEBUG;
  1172.     $cmd =~ s/^\s+//;
  1173.     next unless length( $cmd );
  1174.     my $scom = $icom;
  1175.     if( exists( $Defined{$icom} ) ){
  1176.         $pdef = $Defined{$icom};
  1177.         if( $pdef =~ /^ #(\d+)/ ){
  1178.         $pfil = 'expression #';
  1179.         $plin = $1;
  1180.         } else {
  1181.         $pfil = "$pdef l.";
  1182.         $plin = 1;
  1183.             }
  1184.         } else {
  1185.         $plin++;
  1186.         }
  1187.         my $fl = "$pfil$plin";
  1188.  
  1189.         # insert command as comment in gnerated code
  1190.     #
  1191.     $Code .= "# $cmd\n" if $doGenerate;
  1192.  
  1193.     # The Address(es)
  1194.     #
  1195.     my( $negated, $naddr, $addr1, $addr2 );
  1196.     $naddr = 0;
  1197.     if(      $cmd =~ s/^(\d+)\s*// ){
  1198.         $addr1 = "$1"; $naddr++;
  1199.     } elsif( $cmd =~ s/^\$\s*// ){
  1200.         $addr1 = 'eofARGV()'; $naddr++;
  1201.     } elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
  1202.         my $del = $1;
  1203.         my $regex = stripRegex( $del, \$cmd );
  1204.         if( defined( $regex ) ){
  1205.         $addr1 = 'm '.bre2p( $del, $regex, $fl ).'s';
  1206.         $naddr++;
  1207.         } else {
  1208.         Warn( "malformed regex, 1st address", $fl );
  1209.         $error++;
  1210.         next;
  1211.         }
  1212.         }
  1213.         if( defined( $addr1 ) && $cmd =~ s/,\s*// ){
  1214.          if(      $cmd =~ s/^(\d+)\s*// ){
  1215.             $addr2 = "$1"; $naddr++;
  1216.         } elsif( $cmd =~ s/^\$\s*// ){
  1217.             $addr2 = 'eofARGV()'; $naddr++;
  1218.         } elsif( $cmd =~ s{^(/)}{} || $cmd =~ s{^\\(.)}{} ){
  1219.         my $del = $1;
  1220.             my $regex = stripRegex( $del, \$cmd );
  1221.         if( defined( $regex ) ){
  1222.             $addr2 = 'm '. bre2p( $del, $regex, $fl ).'s';
  1223.             $naddr++;
  1224.         } else {
  1225.             Warn( "malformed regex, 2nd address", $fl );
  1226.             $error++;
  1227.             next;
  1228.         }
  1229.             } else {
  1230.         Warn( "invalid address after `,'", $fl );
  1231.         $error++;
  1232.         next;
  1233.             }
  1234.         }
  1235.  
  1236.         # address modifier `!'
  1237.         #
  1238.         $negated = $cmd =~ s/^!\s*//;
  1239.     if( defined( $addr1 ) ){
  1240.         print "Parse: addr1=$addr1" if $useDEBUG;
  1241.         if( defined( $addr2 ) ){
  1242.         print ", addr2=$addr2 " if $useDEBUG;
  1243.         # both numeric and addr1 > addr2 => eliminate addr2
  1244.         undef( $addr2 ) if $addr1 =~ /^\d+$/ &&
  1245.                                    $addr2 =~ /^\d+$/ && $addr1 > $addr2;
  1246.         }
  1247.     }
  1248.     print 'negated' if $useDEBUG && $negated;
  1249.     print " command:$cmd\n" if $useDEBUG;
  1250.  
  1251.     # The Command
  1252.     #
  1253.         if( $cmd !~ s/^([:#={}abcdDgGhHilnNpPqrstwxy])\s*// ){
  1254.         my $h = substr( $cmd, 0, 1 );
  1255.          Warn( "unknown command `$h'", $fl );
  1256.         $error++;
  1257.         next;
  1258.     }
  1259.         my $key = $1;
  1260.  
  1261.     my $tabref = $ComTab{$key};
  1262.     $GenKey{$key} = 1;
  1263.     if( $naddr > $tabref->[0] ){
  1264.         Warn( "excess address(es)", $fl );
  1265.         $error++;
  1266.         next;
  1267.     }
  1268.  
  1269.     my $arg = '';
  1270.     if(      $tabref->[1] eq 'str' ){
  1271.         # take remainder - don't care if it is empty
  1272.         $arg = $cmd;
  1273.             $cmd = '';
  1274.  
  1275.     } elsif( $tabref->[1] eq 'txt' ){
  1276.         # multi-line text
  1277.         my $goon = $cmd =~ /(.*)\\$/;
  1278.         if( length( $1 ) ){
  1279.         Warn( "extra characters after command ($cmd)", $fl );
  1280.         $error++;
  1281.         }
  1282.         while( $goon ){
  1283.         $icom++;
  1284.         if( $icom > $#Commands ){
  1285.             Warn( "unexpected end of script", $fl );
  1286.             $error++;
  1287.             last;
  1288.         }
  1289.         $cmd = $Commands[$icom];
  1290.         $Code .= "# $cmd\n" if $doGenerate;
  1291.         $goon = $cmd =~ s/\\$//;
  1292.         $cmd =~ s/\\(.)/$1/g;
  1293.         $arg .= "\n" if length( $arg );
  1294.         $arg .= $cmd;
  1295.         }
  1296.         $arg .= "\n" if length( $arg );
  1297.         $cmd = '';
  1298.  
  1299.     } elsif( $tabref->[1] eq 'sub' ){
  1300.         # s///
  1301.         if( ! length( $cmd ) ){
  1302.         Warn( "`s' command requires argument", $fl );
  1303.         $error++;
  1304.         next;
  1305.         }
  1306.         if( $cmd =~ s{^([^\\\n])}{} ){
  1307.         my $del = $1;
  1308.         my $regex = stripRegex( $del, \$cmd );
  1309.         if( ! defined( $regex ) ){
  1310.             Warn( "malformed regular expression", $fl );
  1311.             $error++;
  1312.             next;
  1313.         }
  1314.         $regex = bre2p( $del, $regex, $fl );
  1315.  
  1316.         # a trailing \ indicates embedded NL (in replacement string)
  1317.         while( $cmd =~ s/(?<!\\)\\$/\n/ ){
  1318.             $icom++;
  1319.             if( $icom > $#Commands ){
  1320.             Warn( "unexpected end of script", $fl );
  1321.             $error++;
  1322.             last;
  1323.             }
  1324.             $cmd .= $Commands[$icom];
  1325.                 $Code .= "# $Commands[$icom]\n" if $doGenerate;
  1326.         }
  1327.  
  1328.         my $subst = stripRegex( $del, \$cmd );
  1329.         if( ! defined( $regex ) ){
  1330.             Warn( "malformed substitution expression", $fl );
  1331.             $error++;
  1332.             next;
  1333.         }
  1334.         $subst = sub2p( $del, $subst, $fl );
  1335.  
  1336.         # parse s/// modifier: g|p|0-9|w <file>
  1337.         my( $global, $nmatch, $print, $write ) =
  1338.           ( '',      '',      0,      undef );
  1339.         while( $cmd =~ s/^([gp0-9])// ){
  1340.             $1 eq 'g' ? ( $global = 'g' ) :
  1341.               $1 eq 'p' ? ( $print  = $1  ) : ( $nmatch .= $1 );
  1342.                 }
  1343.         $write = $1 if $cmd =~ s/w\s*(.*)$//;
  1344.               ### $nmatch =~ s/^(\d)\1*$/$1/; ### may be dangerous?
  1345.         if( $global && length( $nmatch ) || length( $nmatch ) > 1 ){
  1346.             Warn( "conflicting flags `$global$nmatch'", $fl );
  1347.             $error++;
  1348.             next;
  1349.         }
  1350.  
  1351.         $arg = makes( $regex, $subst,
  1352.                   $write, $global, $print, $nmatch, $fl );
  1353.         if( ! defined( $arg ) ){
  1354.             $error++;
  1355.             next;
  1356.         }
  1357.  
  1358.             } else {
  1359.         Warn( "improper delimiter in s command", $fl );
  1360.         $error++;
  1361.         next;
  1362.             }
  1363.  
  1364.     } elsif( $tabref->[1] eq 'tra' ){
  1365.         # y///
  1366.         # a trailing \ indicates embedded newline
  1367.         while( $cmd =~ s/(?<!\\)\\$/\n/ ){
  1368.         $icom++;
  1369.         if( $icom > $#Commands ){
  1370.             Warn( "unexpected end of script", $fl );
  1371.             $error++;
  1372.             last;
  1373.         }
  1374.         $cmd .= $Commands[$icom];
  1375.                 $Code .= "# $Commands[$icom]\n" if $doGenerate;
  1376.         }
  1377.         if( ! length( $cmd ) ){
  1378.         Warn( "`y' command requires argument", $fl );
  1379.         $error++;
  1380.         next;
  1381.         }
  1382.         my $d = substr( $cmd, 0, 1 ); $cmd = substr( $cmd, 1 );
  1383.         if( $d eq '\\' ){
  1384.         Warn( "`\\' not valid as delimiter in `y' command", $fl );
  1385.         $error++;
  1386.         next;
  1387.         }
  1388.         my $fr = stripTrans( $d, \$cmd );
  1389.         if( ! defined( $fr ) || ! length( $cmd ) ){
  1390.         Warn( "malformed `y' command argument", $fl );
  1391.         $error++;
  1392.         next;
  1393.         }
  1394.         my $to = stripTrans( $d, \$cmd );
  1395.         if( ! defined( $to ) ){
  1396.         Warn( "malformed `y' command argument", $fl );
  1397.         $error++;
  1398.         next;
  1399.         }
  1400.         if( length($fr) != length($to) ){
  1401.         Warn( "string lengths in `y' command differ", $fl );
  1402.         $error++;
  1403.         next;
  1404.         }
  1405.         if( ! defined( $arg = makey( $fr, $to, $fl ) ) ){
  1406.         $error++;
  1407.         next;
  1408.         }
  1409.  
  1410.     }
  1411.  
  1412.     # $cmd must be now empty - exception is {
  1413.     if( $cmd !~ /^\s*$/ ){
  1414.         if( $key eq '{' ){
  1415.         # dirty hack to process command on '{' line
  1416.         $Commands[$icom--] = $cmd;
  1417.         } else {
  1418.         Warn( "extra characters after command ($cmd)", $fl );
  1419.         $error++;
  1420.         next;
  1421.         }
  1422.     }
  1423.  
  1424.     # Make Code
  1425.         #
  1426.     if( &{$tabref->[2]}( $addr1, $addr2, $negated,
  1427.                              $tabref->[3], $arg, $fl ) ){
  1428.         $error++;
  1429.     }
  1430.     }
  1431.  
  1432.     while( @BlockStack ){
  1433.     my $bl = pop( @BlockStack );
  1434.     Warn( "start of unterminated `{'", $bl );
  1435.         $error++;
  1436.     }
  1437.  
  1438.     for my $lab ( keys( %Label ) ){
  1439.     if( ! exists( $Label{$lab}{defined} ) ){
  1440.         for my $used ( @{$Label{$lab}{used}} ){
  1441.              Warn( "undefined label `$lab'", $used );
  1442.             $error++;
  1443.         }
  1444.     }
  1445.     }
  1446.  
  1447.     exit( 1 ) if $error;
  1448. }
  1449.  
  1450.  
  1451. ##############
  1452. #### MAIN ####
  1453. ##############
  1454.  
  1455. sub usage(){
  1456.     print STDERR "Usage: sed [-an] command [file...]\n";
  1457.     print STDERR "           [-an] [-e command] [-f script-file] [file...]\n";
  1458. }
  1459.  
  1460. ###################
  1461. # Here we go again...
  1462. #
  1463. my $expr = 0;
  1464. while( @ARGV && $ARGV[0] =~ /^-(.)(.*)$/ ){
  1465.     my $opt = $1;
  1466.     my $arg = $2;
  1467.     shift( @ARGV );
  1468.     if(      $opt eq 'e' ){
  1469.         if( length( $arg ) ){
  1470.         push( @Commands, split( "\n", $arg ) );
  1471.         } elsif( @ARGV ){
  1472.         push( @Commands, shift( @ARGV ) ); 
  1473.         } else {
  1474.             Warn( "option -e requires an argument" );
  1475.             usage();
  1476.             exit( 1 );
  1477.         }
  1478.     $expr++;
  1479.         $Defined{$#Commands} = " #$expr";
  1480.     next;
  1481.     }
  1482.     if( $opt eq 'f' ){
  1483.         my $path;
  1484.         if( length( $arg ) ){
  1485.         $path = $arg;
  1486.         } elsif( @ARGV ){
  1487.         $path = shift( @ARGV ); 
  1488.         } else {
  1489.             Warn( "option -f requires an argument" );
  1490.             usage();
  1491.             exit( 1 );
  1492.         }
  1493.     my $fst = $#Commands + 1;
  1494.         open( SCRIPT, "<$path" ) || die( "$0: $path: could not open ($!)\n" );
  1495.         my $cmd;
  1496.         while( defined( $cmd = <SCRIPT> ) ){
  1497.             chomp( $cmd );
  1498.             push( @Commands, $cmd );
  1499.         }
  1500.         close( SCRIPT );
  1501.     if( $#Commands >= $fst ){
  1502.         $Defined{$fst} = "$path";
  1503.     }
  1504.     next;
  1505.     }
  1506.     if( $opt eq '-' && $arg eq '' ){
  1507.     last;
  1508.     }
  1509.     if( $opt eq 'h' || $opt eq '?' ){
  1510.         usage();
  1511.         exit( 0 );
  1512.     }
  1513.     if( $opt eq 'n' ){
  1514.     $doAutoPrint = 0;
  1515.     } elsif( $opt eq 'a' ){
  1516.     $doOpenWrite = 0;
  1517.     } else {
  1518.         Warn( "illegal option `$opt'" );
  1519.         usage();
  1520.         exit( 1 );
  1521.     }
  1522.     if( length( $arg ) ){
  1523.     unshift( @ARGV, "-$arg" );
  1524.     }
  1525. }
  1526.  
  1527. # A singleton command may be the 1st argument when there are no options.
  1528. #
  1529. if( @Commands == 0 ){
  1530.     if( @ARGV == 0 ){
  1531.         Warn( "no script command given" );
  1532.         usage();
  1533.         exit( 1 );
  1534.     }
  1535.     push( @Commands, split( "\n", shift( @ARGV ) ) );
  1536.     $Defined{0} = ' #1';
  1537. }
  1538.  
  1539. print STDERR "Files: @ARGV\n" if $useDEBUG;
  1540.  
  1541. # generate leading code
  1542. #
  1543. $Func = <<'[TheEnd]';
  1544.  
  1545. # openARGV: open 1st input file
  1546. #
  1547. sub openARGV(){
  1548.     unshift( @ARGV, '-' ) unless @ARGV;
  1549.     my $file = shift( @ARGV );
  1550.     open( ARG, "<$file" )
  1551.     || die( "$0: can't open $file for reading ($!)\n" );
  1552.     $isEOF = 0;
  1553. }
  1554.  
  1555. # getsARGV: Read another input line into argument (default: $_).
  1556. #           Move on to next input file, and reset EOF flag $isEOF.
  1557. sub getsARGV(;\$){
  1558.     my $argref = @_ ? shift() : \$_; 
  1559.     while( $isEOF || ! defined( $$argref = <ARG> ) ){
  1560.     close( ARG );
  1561.     return 0 unless @ARGV;
  1562.     my $file = shift( @ARGV );
  1563.     open( ARG, "<$file" )
  1564.     || die( "$0: can't open $file for reading ($!)\n" );
  1565.     $isEOF = 0;
  1566.     }
  1567.     1;
  1568. }
  1569.  
  1570. # eofARGV: end-of-file test
  1571. #
  1572. sub eofARGV(){
  1573.     return @ARGV == 0 && ( $isEOF = eof( ARG ) );
  1574. }
  1575.  
  1576. # makeHandle: Generates another file handle for some file (given by its path)
  1577. #             to be written due to a w command or an s command's w flag.
  1578. sub makeHandle($){
  1579.     my( $path ) = @_;
  1580.     my $handle;
  1581.     if( ! exists( $wFiles{$path} ) || $wFiles{$path} eq '' ){
  1582.         $handle = $wFiles{$path} = gensym();
  1583.     if( $doOpenWrite ){
  1584.         if( ! open( $handle, ">$path" ) ){
  1585.         die( "$0: can't open $path for writing: ($!)\n" );
  1586.         }
  1587.     }
  1588.     } else {
  1589.         $handle = $wFiles{$path};
  1590.     }
  1591.     return $handle;
  1592. }
  1593.  
  1594. # printQ: Print queued output which is either a string or a reference
  1595. #         to a pathname.
  1596. sub printQ(){
  1597.     for my $q ( @Q ){
  1598.     if( ref( $q ) ){
  1599.             # flush open w files so that reading this file gets it all
  1600.         if( exists( $wFiles{$$q} ) && $wFiles{$$q} ne '' ){
  1601.         open( $wFiles{$$q}, ">>$$q" );
  1602.         }
  1603.             # copy file to stdout: slow, but safe
  1604.         if( open( RF, "<$$q" ) ){
  1605.         while( defined( my $line = <RF> ) ){
  1606.             print $line;
  1607.         }
  1608.         close( RF );
  1609.         }
  1610.     } else {
  1611.         print $q;
  1612.     }
  1613.     }
  1614.     undef( @Q );
  1615. }
  1616.  
  1617. [TheEnd]
  1618.  
  1619. # generate the sed loop
  1620. #
  1621. $Code .= <<'[TheEnd]';
  1622. sub openARGV();
  1623. sub getsARGV(;\$);
  1624. sub eofARGV();
  1625. sub printQ();
  1626.  
  1627. # Run: the sed loop reading input and applying the script
  1628. #
  1629. sub Run(){
  1630.     my( $h, $icnt, $s, $n );
  1631.     # hack (not unbreakable :-/) to avoid // matching an empty string
  1632.     my $z = "\000"; $z =~ /$z/;
  1633.     # Initialize.
  1634.     openARGV();
  1635.     $Hold    = '';
  1636.     $CondReg = 0;
  1637.     $doPrint = $doAutoPrint;
  1638. CYCLE:
  1639.     while( getsARGV() ){
  1640.     chomp();
  1641.     $CondReg = 0;   # cleared on t
  1642. BOS:;
  1643. [TheEnd]
  1644.  
  1645.     # parse - avoid opening files when doing s2p
  1646.     #
  1647.     ( $svOpenWrite, $doOpenWrite ) = (  $doOpenWrite, $svOpenWrite )
  1648.       if $doGenerate;
  1649.     Parse();
  1650.     ( $svOpenWrite, $doOpenWrite ) = (  $doOpenWrite, $svOpenWrite )
  1651.       if $doGenerate;
  1652.  
  1653.     # append trailing code
  1654.     #
  1655.     $Code .= <<'[TheEnd]';
  1656. EOS:    if( $doPrint ){
  1657.             print $_, "\n";
  1658.         } else {
  1659.         $doPrint = $doAutoPrint;
  1660.     }
  1661.         printQ() if @Q;
  1662.     }
  1663.  
  1664.     exit( 0 );
  1665. }
  1666. [TheEnd]
  1667.  
  1668.  
  1669. # append optional functions, prepend prototypes
  1670. #
  1671. my $Proto = "# prototypes\n";
  1672. if( $GenKey{'l'} ){
  1673.     $Proto .= "sub _l();\n";
  1674.     $Func .= <<'[TheEnd]';
  1675. # _l: l command processing
  1676. #
  1677. sub _l(){        
  1678.     my $h = $_;
  1679.     my $mcpl = 70;
  1680.     # transform non printing chars into escape notation
  1681.     $h =~ s/\\/\\\\/g;
  1682.     if( $h =~ /[^[:print:]]/ ){
  1683.     $h =~ s/\a/\\a/g;
  1684.     $h =~ s/\f/\\f/g;
  1685.     $h =~ s/\n/\\n/g;
  1686.     $h =~ s/\t/\\t/g;
  1687.     $h =~ s/\r/\\r/g;
  1688.     $h =~ s/\e/\\e/g;
  1689.         $h =~ s/([^[:print:]])/sprintf("\\%03o", ord($1))/ge;
  1690.     }
  1691.     # split into lines of length $mcpl
  1692.     while( length( $h ) > $mcpl ){
  1693.     my $l = substr( $h, 0, $mcpl-1 );
  1694.     $h = substr( $h, $mcpl );
  1695.     # remove incomplete \-escape from end of line
  1696.     if( $l =~ s/(?<!\\)(\\[0-7]{0,2})$// ){
  1697.         $h = $1 . $h;
  1698.     }
  1699.     print $l, "\\\n";
  1700.     }
  1701.     print "$h\$\n";
  1702. }
  1703.  
  1704. [TheEnd]
  1705. }
  1706.  
  1707. if( $GenKey{'r'} ){
  1708.     $Proto .= "sub _r(\$);\n";
  1709.     $Func .= <<'[TheEnd]';
  1710. # _r: r command processing: Save a reference to the pathname.
  1711. #
  1712. sub _r($){
  1713.     my $path = shift();
  1714.     push( @Q, \$path );
  1715. }
  1716.  
  1717. [TheEnd]
  1718. }
  1719.  
  1720. if( $GenKey{'t'} ){
  1721.     $Proto .= "sub _t();\n";
  1722.     $Func .= <<'[TheEnd]';
  1723. # _t: t command - condition register test/reset
  1724. #
  1725. sub _t(){
  1726.     my $res = $CondReg;
  1727.     $CondReg = 0;
  1728.     $res;
  1729. }
  1730.  
  1731. [TheEnd]
  1732. }
  1733.  
  1734. if( $GenKey{'w'} ){
  1735.     $Proto .= "sub _w(\$);\n";
  1736.     $Func .= <<'[TheEnd]';
  1737. # _w: w command and s command's w flag - write to file 
  1738. #
  1739. sub _w($){
  1740.     my $path   = shift();
  1741.     my $handle = $wFiles{$path};
  1742.     if( ! $doOpenWrite && ! defined( fileno( $handle ) ) ){
  1743.     open( $handle, ">$path" )
  1744.     || die( "$0: $path: cannot open ($!)\n" );
  1745.     }
  1746.     print $handle $_, "\n";
  1747. }
  1748.  
  1749. [TheEnd]
  1750. }
  1751.  
  1752. $Code = $Proto . $Code;
  1753.  
  1754. # magic "#n" - same as -n option
  1755. #
  1756. $doAutoPrint = 0 if substr( $Commands[0], 0, 2 ) eq '#n';
  1757.  
  1758. # eval code - check for errors
  1759. #
  1760. print "Code:\n$Code$Func" if $useDEBUG;
  1761. eval $Code . $Func;
  1762. if( $@ ){
  1763.     print "Code:\n$Code$Func";
  1764.     die( "$0: internal error - generated incorrect Perl code: $@\n" );
  1765. }
  1766.  
  1767. if( $doGenerate ){
  1768.  
  1769.     # write full Perl program
  1770.     #
  1771.  
  1772.     # bang line, declarations, prototypes
  1773.     print <<TheEnd;
  1774. #!$perlpath -w
  1775. eval 'exec $perlpath -S \$0 \${1+"\$@"}'
  1776.   if 0;
  1777. \$0 =~ s/^.*?(\\w+)\[\\.\\w+\]*\$/\$1/;
  1778.  
  1779. use strict;
  1780. use Symbol;
  1781. use vars qw{ \$isEOF \$Hold \%wFiles \@Q \$CondReg
  1782.          \$doAutoPrint \$doOpenWrite \$doPrint };
  1783. \$doAutoPrint = $doAutoPrint;
  1784. \$doOpenWrite = $doOpenWrite;
  1785. TheEnd
  1786.  
  1787.     my $wf = "'" . join( "', '",  keys( %wFiles ) ) . "'";
  1788.     if( $wf ne "''" ){
  1789.     print <<TheEnd;
  1790. sub makeHandle(\$);
  1791. for my \$p ( $wf ){
  1792.    exit( 1 ) unless makeHandle( \$p );
  1793. }
  1794. TheEnd
  1795.    }
  1796.  
  1797.    print $Code;
  1798.    print "Run();\n";
  1799.    print $Func;
  1800.    exit( 0 );
  1801.  
  1802. } else {
  1803.  
  1804.     # execute: make handles (and optionally open) all w files; run!
  1805.     for my $p ( keys( %wFiles ) ){
  1806.         exit( 1 ) unless makeHandle( $p );
  1807.     }
  1808.     Run();
  1809. }
  1810.  
  1811.  
  1812. =head1 ENVIRONMENT
  1813.  
  1814. The environment variable C<PSEDEXTBRE> may be set to extend BREs.
  1815. See L<"Additional Atoms">.
  1816.  
  1817. =head1 DIAGNOSTICS
  1818.  
  1819. =over 4
  1820.  
  1821. =item ambiguous translation for character `%s' in `y' command
  1822.  
  1823. The indicated character appears twice, with different translations.
  1824.  
  1825. =item `[' cannot be last in pattern
  1826.  
  1827. A `[' in a BRE indicates the beginning of a I<bracket expression>.
  1828.  
  1829. =item `\' cannot be last in pattern
  1830.  
  1831. A `\' in a BRE is used to make the subsequent character literal.
  1832.  
  1833. =item `\' cannot be last in substitution
  1834.  
  1835. A `\' in a subsitution string is used to make the subsequent character literal.
  1836.  
  1837. =item conflicting flags `%s'
  1838.  
  1839. In an B<s> command, either the `g' flag and an n-th occurrence flag, or
  1840. multiple n-th occurrence flags are specified. Note that only the digits
  1841. `1' through `9' are permitted.
  1842.  
  1843. =item duplicate label %s (first defined at %s)
  1844.  
  1845. =item excess address(es)
  1846.  
  1847. The command has more than the permitted number of addresses.
  1848.  
  1849. =item extra characters after command (%s)
  1850.  
  1851. =item illegal option `%s'
  1852.  
  1853. =item improper delimiter in s command
  1854.  
  1855. The BRE and substitution may not be delimited with `\' or newline.
  1856.  
  1857. =item invalid address after `,'
  1858.  
  1859. =item invalid backreference (%s)
  1860.  
  1861. The specified backreference number exceeds the number of backreferences
  1862. in the BRE.
  1863.  
  1864. =item invalid repeat clause `\{%s\}'
  1865.  
  1866. The repeat clause does not contain a valid integer value, or pair of
  1867. values.
  1868.  
  1869. =item malformed regex, 1st address
  1870.  
  1871. =item malformed regex, 2nd address
  1872.  
  1873. =item malformed regular expression
  1874.  
  1875. =item malformed substitution expression
  1876.  
  1877. =item malformed `y' command argument
  1878.  
  1879. The first or second string of a B<y> command  is syntactically incorrect.
  1880.  
  1881. =item maximum less than minimum in `\{%s\}'
  1882.  
  1883. =item no script command given
  1884.  
  1885. There must be at least one B<-e> or one B<-f> option specifying a
  1886. script or script file.
  1887.  
  1888. =item `\' not valid as delimiter in `y' command
  1889.  
  1890. =item option -e requires an argument
  1891.  
  1892. =item option -f requires an argument
  1893.  
  1894. =item `s' command requires argument
  1895.  
  1896. =item start of unterminated `{'
  1897.  
  1898. =item string lengths in `y' command differ
  1899.  
  1900. The translation table strings in a B<y> commanf must have equal lengths.
  1901.  
  1902. =item undefined label `%s'
  1903.  
  1904. =item unexpected `}'
  1905.  
  1906. A B<}> command without a preceding B<{> command was encountered.
  1907.  
  1908. =item unexpected end of script
  1909.  
  1910. The end of the script was reached although a text line after a
  1911. B<a>, B<c> or B<i> command indicated another line.
  1912.  
  1913. =item unknown command `%s'
  1914.  
  1915. =item unterminated `['
  1916.  
  1917. A BRE contains an unterminated bracket expression.
  1918.  
  1919. =item unterminated `\('
  1920.  
  1921. A BRE contains an unterminated backreference.
  1922.  
  1923. =item `\{' without closing `\}'
  1924.  
  1925. A BRE contains an unterminated bounds specification.
  1926.  
  1927. =item `\)' without preceding `\('
  1928.  
  1929. =item `y' command requires argument
  1930.  
  1931. =back
  1932.  
  1933. =head1 EXAMPLE
  1934.  
  1935. The basic material for the preceding section was generated by running
  1936. the sed script
  1937.  
  1938.    #no autoprint
  1939.    s/^.*Warn( *"\([^"]*\)".*$/\1/
  1940.    t process
  1941.    b
  1942.    :process
  1943.    s/$!/%s/g
  1944.    s/$[_[:alnum:]]\{1,\}/%s/g
  1945.    s/\\\\/\\/g
  1946.    s/^/=item /
  1947.    p
  1948.  
  1949. on the program's own text, and piping the output into C<sort -u>.
  1950.  
  1951.  
  1952. =head1 SED SCRIPT TRANSLATION
  1953.  
  1954. If this program is invoked with the name F<s2p> it will act as a
  1955. sed-to-Perl translator. After option processing (all other
  1956. arguments are ignored), a Perl program is printed on standard
  1957. output, which will process the input stream (as read from all
  1958. arguments) in the way defined by the sed script and the option setting
  1959. used for the translation.
  1960.  
  1961. =head1 SEE ALSO
  1962.  
  1963. perl(1), re_format(7)
  1964.  
  1965. =head1 BUGS
  1966.  
  1967. The B<l> command will show escape characters (ESC) as `C<\e>', but
  1968. a vertical tab (VT) in octal.
  1969.  
  1970. Trailing spaces are truncated from labels in B<:>, B<t> and B<b> commands.
  1971.  
  1972. The meaning of an empty regular expression (`C<//>'), as defined by B<sed>,
  1973. is "the last pattern used, at run time". This deviates from the Perl
  1974. interpretation, which will re-use the "last last successfully executed
  1975. regular expression". Since keeping track of pattern usage would create
  1976. terribly cluttered code, and differences would only appear in obscure
  1977. context (where other B<sed> implementations appear to deviate, too),
  1978. the Perl semantics was adopted. Note that common usage of this feature,
  1979. such as in C</abc/s//xyz/>, will work as expected.
  1980.  
  1981. Collating elements (of bracket expressions in BREs) are not implemented.
  1982.  
  1983. =head1 STANDARDS
  1984.  
  1985. This B<sed> implementation conforms to the IEEE Std1003.2-1992 ("POSIX.2")
  1986. definition of B<sed>, and is compatible with the I<OpenBSD>
  1987. implementation, except where otherwise noted (see L<"BUGS">).
  1988.  
  1989. =head1 AUTHOR
  1990.  
  1991. This Perl implementation of I<sed> was written by Wolfgang Laun,
  1992. I<Wolfgang.Laun@alcatel.at>.
  1993.  
  1994. =head1 COPYRIGHT and LICENSE
  1995.  
  1996. This program is free and open software. You may use, modify,
  1997. distribute, and sell this program (and any modified variants) in any
  1998. way you wish, provided you do not restrict others from doing the same.
  1999.  
  2000. =cut
  2001.  
  2002.  
  2003. __END__
  2004. :endofperl
  2005.