Help for this page

Select Code to Download


  1. or download this
    wget http://www.astro.sunysb.edu/fwalter/AST389/TEXTS/Nightfall.htm
    html2text-cpp Nightfall.htm >nightfall.txt
    for i in {1..1000}; do cat nightfall.txt >>in.txt; done
    
  2. or download this
    #!/bin/bash
    
    ...
        sed 's/ used.* / use /gi' | \
        sed 's/ using.* / use /gi' \
    >|out-sed.dat
    
  3. or download this
    % time ./re.sh 
    real    0m5,201s
    user    0m43,394s
    sys    0m1,302s
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
        print $OUT "$_\n";
      }
    }
    
  5. or download this
    % time ./re1.pl 
    real    4m1,655s
    user    4m29,242s
    sys    0m0,380s
    
  6. or download this
    % time ./re2.pl 
    real    1m5,096s
    user    1m11,889s
    sys    0m0,524s