On Fri, 2003-03-07 at 17:22, Soren Harward wrote:
> Have you seen Apple's new servers?
> 
> http://www.apple.com/xserve/
> 
> (Now ROT13 the line below for the punchline)
> Wh'g qozzsr hvs W-Foe

Ju't dbmmfe uif J-Sbr

I'm confused.

For those that want to play along at home, here's a simple rot13 shell
function.

rot13()
{
    if [ $# = 0 ]
    then
        tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]"
    else
        if [ -f "$1" ] ; then
            tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]" < "$1"
        else
            echo "$1" | tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]"
        fi
    fi
}



-- 
Stuart Jansen <[EMAIL PROTECTED]>

#define FALSE 0 /* This is the naked Truth */
#define TRUE  1 /* and this is the Light   */ -- mailto.c


____________________
BYU Unix Users Group 
http://uug.byu.edu/ 
___________________________________________________________________
List Info: http://phantom.byu.edu/cgi-bin/mailman/listinfo/uug-list

Reply via email to