- 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
- or download this
#!/bin/bash
...
sed 's/ used.* / use /gi' | \
sed 's/ using.* / use /gi' \
>|out-sed.dat
- or download this
% time ./re.sh
real 0m5,201s
user 0m43,394s
sys 0m1,302s
- or download this
#!/usr/bin/perl
use strict;
...
print $OUT "$_\n";
}
}
- or download this
% time ./re1.pl
real 4m1,655s
user 4m29,242s
sys 0m0,380s
- or download this
% time ./re2.pl
real 1m5,096s
user 1m11,889s
sys 0m0,524s