Help for this page

Select Code to Download


  1. or download this
        perl -ne 'print if 4 .. eof' file
    
  2. or download this
        perl -ne 'print if 5 .. 10' file
    
  3. or download this
        perl -ne 'print if 4 .. 1' file
        perl -ne 'print if 4 .. 0' file
    ...
        # or
        perl -ne 'print if $. >= 4' file