|
For my own twisted interest, I ran a few unix file compression methods on 25,000 concatenated copies of the Declaration of Independence (html version, 13,641 bytes).
Looks like gzip is the winner.
How to create a file containing 25,000 copies of the Declaration of Independence Brute Force Method: curl http://earlyamerica.com/earlyamerica/freedom/doi/text.html > f cat f f f f f f f f f f > fd cat fd fd fd fd fd fd fd fd fd fd > fh cat fh fh fh fh fh fh fh fh fh fh > fk cat fk fk fk fk fk fk fk fk fk fk > f10k cat f10k f10k fk fk fk fk fk > doi25k rm f fd fh fk f10k Perl Method: perl -e 'print `curl http://earlyamerica.com/earlyamerica/freedom/doi/text.html` x 25000' > doi25k
Let freedom ring!
|
|