* Brett Randall <[EMAIL PROTECTED]> [010626 21:49]:
> >>>>> "Chris" == Chris Bolt <[EMAIL PROTECTED]> writes:
> 
> > perl -e 'while(<>){$_=~tr/A-Za-z/N-ZA-Mn-za-m/;print}'
> > Then paste the email :-)
> 
> Or, a bit shorter,
> 
> $ tr 'a-zA-Z' 'n-za-mN-ZA-M' < email

Or a bit kludgier,

  perl -ni -e 'foreach (split //){unless(/\w/){print; next;}print
  chr(((ord(lc)-96+13)%26)+96)}'

/pg, who *really* has to remember to use tr more... :-)
-- 
Peter Green : Architekton Internet Services, LLC : [EMAIL PROTECTED]
---
It makes me mad when I go to all the trouble of having Martha cook up about a 
hundred drumsticks, the guy at the Marineland says: 'You can't throw chicken 
to the dolphins. They eat fish.' Sure they eat fish, if that's all you give 
them. Man, wise up.
 (Jack Handey)

Reply via email to