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

操作系统开发

开发平台:

WINDOWS

  1. TAR(1)                    Minix Programmer's Manual                     TAR(1)
  2. NAME
  3.      tar - tape archiver
  4. SYNOPSIS
  5.      tar [Fcotvxp] [f] tarfile file ...
  6. OPTIONS
  7.      F    Force tar to continue after an error
  8.      c    Create a new archive; add named files
  9.      o    Set uid/gid to original values on extraction
  10.      f    Next argument is name of tarfile
  11.      t    Print a table listing the archive's contents
  12.      v    Verbose mode-tell what is going on as it happens
  13.      x    The named files are extracted from the archive
  14.      p    Restore file modes, ignore creation mask
  15.      D    Directory only, do not recurse
  16. EXAMPLES
  17.      tar c /dev/fd1 .    # Back up current directory to /dev/fd1
  18.      tar xv /dev/fd1 file1 file2
  19.                          # Extract two files from the archive
  20.      tar cf - | (cd dest; tar xf -)
  21.                          # Copy current directory to dest
  22. DESCRIPTION
  23.      Tar is a POSIX-compatible archiver, except that it  does  not  use  tape.
  24.      It's  primary  advantage  over ar is that the tar format is somewhat more
  25.      standardized than the ar format,  making  it  theoretically  possible  to
  26.      transport  MINIX files to another computer, but do not bet on it.  If the
  27.      target machine runs MS-DOS , try doswrite .
  28. SEE ALSO
  29.      compress(1), vol(1).
  30.                                                                              1