home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 November / VPR0311.ISO / OLS / TAR32223 / tar32223.lzh / tar32_2 / sdk / cmd_tare.txt < prev    next >
Text File  |  2003-01-17  |  3KB  |  109 lines

  1. =============================================================================
  2.     TAR32.DLL Ver2.xx command DESCRIPTION. (for Tar() API)
  3.  
  4. =============================================================================
  5. TAR(1)                    WIN-32 user's manual                    TAR(1)
  6.  
  7. NAME
  8.  
  9.         TAR32.DLL Tar() API command.
  10.  
  11.  
  12. COMMAND LINE
  13.  
  14.         tar [-]{c|x|t}[v][a][i][I][e][n][z[N]][P{9|F|A}]
  15.               [[-f] ARCH] [-o PATH|PATH\] file...  @indirect-command-file
  16.  
  17. DESCRIPTION
  18.     please use like tar command.
  19.     you can pack tar/tar.gz/gz/bz2 and unpack tar/tar.gz/tar.Z/tar.bz2/gz/Z/bz2.
  20.     unpacking tar/tar.gz/tar.Z is auto-detect.
  21.  
  22. COMMAND
  23.     -c create
  24.     -x extract
  25.     -t list
  26.  
  27. OPTION:
  28.         A[A|H] pack file attribute.(A:Archive/H:Hidden)(currently ignore)
  29.  
  30.         [f] ARCH  (File) Specify Archive File Name
  31.         
  32.         g       (GNUtar) GNUtar header.(currently ignore)
  33.         I       (ignore file attribute)(currently ignore)
  34.         n       (no message) 
  35.         o PATH | PATH\  (extract to) 。
  36.  
  37.                     tar xvaf GCC242.TGZ -o c:\gnu
  38.                   or
  39.                     tar xvaf GCC242.TGZ c:\gnu\
  40.                     
  41.     p    Output to output Buffer.(not File)
  42.             tar -pxvf foo.tgz file.txt
  43.  
  44.         v       (Verbose)
  45.       
  46.     G    Gzip or Compless only Pack/Unpack.(not tar)
  47.  
  48.         z[N]    gzip compression level.(1:fast-9:slow/small)
  49.     
  50.         B[N] | --bzip2=N
  51.         bzip2 compression level.(1:fast-9:slow/small)
  52.  
  53.     --check-all-path=[0|1] (currently ignore)
  54.         check match to path.
  55.         if 1 *.* isn't match aa/ii.
  56.         default 0
  57.  
  58.     --display-dialog=[0|1]
  59.         display dialog dualing pack/unpack.
  60.         default 1.
  61.     --use-directory=[0|1]
  62.         use directory structure.
  63.         default is 1.
  64.  
  65.     --message-loop=[0|1]
  66.         run message loop in library.
  67.         default is 1.
  68.         
  69. [Examples]
  70.  
  71.         tar -cvf foo.tar *.c *.h makefile
  72.             archive *.c *.h makefile to foo.tar.
  73.  
  74.         tar -cvfz foo.tgz *.c *.h makefile
  75.             with gzip.
  76.  
  77.         tar -cvfB foo.tar.bz2 *.c *.h makefile
  78.             with bzip2.
  79.  
  80.         tar -cvfz9 foo.tgz *.c *.h makefile
  81.             gzip level 9.(most)
  82.  
  83.         tar -cvfZ foo.tgz *.c *.h makefile
  84.  
  85.         tar -cvfz foo.000 *.c *.h makefile
  86.  
  87.     tar -cvfGz foo.gz foo
  88.         GZIP Compression.
  89.  
  90.         tar -xvf bar.taz
  91.             unpack all file stored in bar.taz
  92.  
  93.     tar -pxvf foo.tgz file.txt
  94.         Output file.txt in foo.tgz to buffer specified in TAR API.
  95.  
  96.         tar -xvf bar.taz -o a:/foo
  97.         tar -xvf bar.taz a:/foo/
  98.             unpack to a:/foo
  99.  
  100.  
  101.         tar -xvf bar.tgz @bar.lst
  102.  
  103.         tar tnf b:/gnu/*.tgz
  104.  
  105.  
  106. [Environment Variable]
  107.  
  108.         TZ      Differ from UTC to TimeZone(JST-9 at Japan)
  109.