http://qs321.pair.com?node_id=138490

I didn't see any rule saying that obfu's have to be JAPHs, so I figured I'd post this here. Correct me if I'm wrong...

#!/usr/bin/perl -w $dna=$ARGV[0]||die"Err $i";srand (time|$$);while (1){@e=('A','T', 'C','G');substr($dna,rand length $dna,1,$e[int rand @e]);;;;print $i++,"--$dna\n";sleep $ARGV[1];} =pod Run like: % perl mutare.pl ATCGATCGATCGATCG 1 Output gets ugly, sorry. =cut