Help for this page

Select Code to Download


  1. or download this
    $ cat XXX
    A
    ...
    C
    D
    E
    
  2. or download this
    $ alias perle
    alias perle='perl -Mstrict -Mwarnings -Mautodie=:all -E'
    
  3. or download this
    $ perle 'open my $fh, "<", "XXX"; while (<$fh>) { print if 3 .. eof }'
    C
    D
    E
    
  4. or download this
    $ perle 'open my $fh, "<", "XXX"; while (<$fh>) { print if 1 .. 3 }'
    A
    B
    C
    
  5. or download this
    $ perle 'open my $fh, "<", "XXX"; while (<$fh>) { print if 2 .. 4 }'
    B
    C
    D