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

操作系统开发

开发平台:

WINDOWS

  1. GATHER(1)                 Minix Programmer's Manual                  GATHER(1)
  2. NAME
  3.      gather - gather up the files in a directory for transmission
  4. SYNOPSIS
  5.      gather [-s] source_dir [-d] dest_dir [-b] bytes [-f] file
  6. OPTIONS
  7.      -b   Desired number of bytes per output file
  8.      -d   Destination directory
  9.      -f   Base name of output files
  10.      -s   Source directory
  11. EXAMPLES
  12.      gather              # Collect files in current dir into 60K archives
  13.      gather -d dir       # Put the archives in dir
  14.      gather -b 90000     # Try to produce 90K archives
  15.      gather -s .. -d targ -b 5000
  16.                          # Try to produce 5K archives
  17. DESCRIPTION
  18.      It is often useful to collect all the files in a directory  into  one  or
  19.      more  archives  for  transmission by mail.  This program collects all the
  20.      files in the source directory (default: current directory) and puts  them
  21.      into  a shar archive.  The shar archive is then compressed and uuencoded.
  22.      An attempt is made to have the final .uue file be about  the  given  size
  23.      (default: 60K), but since gather cannot really predict how much shar will
  24.      add to the file, how much compress will reduce the file, and how much uue
  25.      will  add  again, the sizes can fluctuate.  If the -f file flag is given,
  26.      the archives will be given the names file_00.uue, file_01.uue etc.  If -f
  27.      is  not given, the name of the source directory is used as the base name.
  28.      Since 7 characters of suffix are  appended,  the  base  name  should  not
  29.      exceed 7 characters.
  30.                                                                              1