in reply to Re: can this text be recovered???
in thread can this text be recovered???

You can get the words by running it through rot13.

perl -pe 'tr/a-z/n-za-m/' < encoded

That will be every unique word that was in the original text, in alphabetical order.

Replies are listed 'Best First'.
Re^3: can this text be recovered???
by northwind (Hermit) on Mar 19, 2007 at 19:32 UTC

    And to rot13 the uppercase characters:

    perl -pe 'tr/a-zA-Z/n-za-mN-ZA-M/' < encoded