UUE.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. UUE(1)                    Minix Programmer's Manual                     UUE(1)
  2. NAME
  3.      uue, uuencode - encode a binary file to ASCII (e.g., for mailing)
  4. SYNOPSIS
  5.      uue [-n] file [-]
  6. OPTIONS
  7.      -n   How many lines to put in each file
  8. EXAMPLES
  9.      uue file            # Encode file to file.uue
  10.      uue file - >x       # Encode file and write on stdout
  11.      uue -800 file       # Output on file.uaa, file.uab etc.
  12. DESCRIPTION
  13.      Uuencode is a famous program that converts an arbitrary (usually  binary)
  14.      file to an encoding using only 64 ASCII characters.  Uudecode converts it
  15.      back to the original file.  The  uue  and  uud  programs  are  the  MINIX
  16.      versions  of  these programs, and are compatible with the UNIX ones.  The
  17.      files produced can even  be  sent  successfully  over  BITNET,  which  is
  18.      notorious  for  mangling files.  It is possible to have uue automatically
  19.      split the encoded file up into small chunks.  The output files  then  get
  20.      the  suffixes  .uaa,  .uab,  etc.,  instead  of  .uue.  When uud is given
  21.      file.uaa to decode, it automatically includes the subsequent pieces.  The
  22.      encoding  takes 3 bytes (24 bits) from the input file and renders it as 4
  23.      bytes in the output file.
  24. SEE ALSO
  25.      btoa(1), uud(1).
  26.                                                                              1