Help for this page

Select Code to Download


  1. or download this
    insertion_script < TSV.file > log.file
    
  2. or download this
    tail +N TSV.file | insertion_script >> log.file
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    while (<>) {
        print if $. >= $bgn;
    }