BACKUP.8
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. BACKUP(8)                 Minix Programmer's Manual                  BACKUP(8)
  2. NAME
  3.      backup - backup files
  4. SYNOPSIS
  5.      backup [-djmnorstvz] dir1 dir2
  6. OPTIONS
  7.      -d   At top level, only directories are backed up
  8.      -j   Do not copy junk:  *.Z, *.bak, a.out, core, etc
  9.      -m   If device full, prompt for new diskette
  10.      -n   Do not backup top-level directories
  11.      -o   Do not copy *.o files
  12.      -r   Restore files
  13.      -s   Do not copy *.s files
  14.      -t   Preserve creation times
  15.      -v   Verbose; list files being backed up
  16.      -z   Compress the files on the backup medium
  17. EXAMPLES
  18.      backup -mz . /f0    # Backup current directory compressed
  19.      backup /bin /usr/bin
  20.                          # Backup bin from RAM disk to hard disk
  21. DESCRIPTION
  22.      Backup (recursively) backs up the contents of a given directory  and  its
  23.      subdirectories  to  another  part of the file system.  It has two typical
  24.      uses.  First, some portion of the file system can be backed up onto 1  or
  25.      more diskettes.  When a diskette fills up, the user is prompted for a new
  26.      one.  The backups are in the form of mountable file systems.   Second,  a
  27.      directory  on  RAM  disk  can be backed up onto hard disk.  If the target
  28.      directory  is  empty,  the  entire  source  directory  is  copied  there,
  29.      optionally  compressed  to save space.  If the target directory is an old
  30.      backup, only those files in the target  directory  that  are  older  than
  31.      similar  names  in  the source directory are replaced.  Backup uses times
  32.      for this purpose, like make.  Calling Backup as Restore is equivalent  to
  33.      using  the  -r  option; this replaces newer files in the target directory
  34.      with older  files  from  the  source  directory,  uncompressing  them  if
  35.                                                                              1
  36. BACKUP(8)                 Minix Programmer's Manual                  BACKUP(8)
  37.      necessary.  The target directory  contents  are  thus  returned  to  some
  38.      previous state.
  39. SEE ALSO
  40.      tar(1).
  41.                                                                              2