home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / ONLINE / ATP-OS2 / DOCS / ROT13.TXT < prev   
Text File  |  1997-01-03  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. ROT13(1)            Linux Programmer's Manual            ROT13(1)
  5.  
  6.  
  7. NAME
  8.        rot13 - shroud text with simple rot-13 cypher
  9.  
  10. SYNOPSIS
  11.        rot13 [input [output]]
  12.  
  13. DESCRIPTION
  14.        This  manual  page documents the rot13 text filter.  If no
  15.        filenames are specified, rot13 reads from stdin and writes
  16.        to stdout.  If one filename is specified, rot13 reads from
  17.        that file and writes to  stdout.   If  two  filenames  are
  18.        specified,  rot13  reads from the first file and writes to
  19.        the second file. You may use rot13 inside  the  vi  editor
  20.        just as you would other filters, e.g. fmt.
  21.  
  22.        Rot13 performs Usenet-standard rot-13 encryption.  This is
  23.        done by taking the input letter and shifting it left by 13
  24.        characters, so an A becomes an N, a B becomes an O, and so
  25.        forth. Applying rot13 a second time restores the  original
  26.        text.  The  encrypted  version  of the sentence `The quick
  27.        brown fox jumps over the lazy dog.' looks like this:
  28.  
  29.             Gur dhvpx oebja sbk whzcf bire gur ynml qbt.
  30.  
  31.  
  32.        Note that rot-13 is obviously not secure  encryption.  The
  33.        main  purpose  of  rot13  is to shield sensitive eyes from
  34.        potentially offensive or disturbing public messages.  Most
  35.        news  readers  provide a command to decode rot13 messages.
  36.        For example, the tin news reader uses the command 'd'.
  37.  
  38. AUTHOR
  39.        The original author is Marc Unangst.  Various ways of con-
  40.        tacting him are:
  41.             mju@mudos.ann-arbor.mi.us
  42.             ...!umich!leebai!mudos!mju
  43.             Marc Unangst of 1:2200/129.0@fidonet.org
  44.  
  45.        The  1994  update  was  done  by  Thomas  McWilliams.  See
  46.        Changelog in the source distribution for details.
  47.  
  48. COPYING
  49.        Distribution permitted under the terms of the GNU  General
  50.        Public License, version 2 (or later versions at your pref-
  51.        erence). Copies of this agreement are available from:
  52.  
  53.             Free Software Foundation, Inc.,
  54.             675 Mass Ave,
  55.             Cambridge, MA 02139, USA.
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. Linux                      01 Sept 1994                         1
  65.  
  66.  
  67.