home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / chip / copy / dcfr004 / dcfr.doc < prev    next >
Text File  |  1995-12-11  |  4KB  |  122 lines

  1.  
  2.                                 DCFR v0.0.4
  3.  
  4.                              January 2nd, 1995
  5.  
  6.                              by Vincent Mallet
  7.  
  8.  
  9. ■ Disclaimer: see end of document.
  10.  
  11. ■ First of all:
  12.  
  13. DCFR is FREEWARE, not public domain. You might use it, copy it, distribute
  14. it, give it away to your friends, but you MAY NOT SELL IT nor disassemble it.
  15. (DCFR may be included on a CD ROM)
  16.  
  17. If you find DCFR easy and usefull, you may want to send a little registration
  18. of $10. This will help me in developping my BBS, but this is not required.
  19. Send you checks to :-):         Vincent Mallet
  20.                                 1457 Chemin de St Etienne
  21.                                 06570 St Paul
  22.                                 FRANCE
  23.  
  24. ■ What is DCFR?
  25.  
  26. As PKunZIP on ZIP files, DCFR lets you manipulate image files created with
  27. DCF. You can view the contents of an image, or extracts files from it.
  28.  
  29.  
  30. ■ How to do it?
  31.  
  32. DCFR is _very_ easy to use.
  33. Here's the DCFR usage (type DCFR at dos prompt to get it):
  34.  
  35.  ||   usage: DCFR [options] <filename> [filespec] [destpath] [options]
  36.  ||
  37.  ||   where <filename> is the DCF image file
  38.  ||         [filespec]: optional: filespec with wildcard (ex: [0-9]*c.asm)
  39.  ||   options: -e              extract files
  40.  ||            -o              overwrite existing files
  41.  ||            -a              restore attributes (Hidden System RO Archive)
  42.  ||            -d              create directories when needed
  43.  ||            -v              list image file (default)
  44.  ||            -x<filespec>    exclude files (wildcards ok)
  45.  
  46. Some examples:
  47.  
  48. Suppose you've created an image file of a 1.44 diskette using DCF, and
  49. this file is named FOO.DCF.
  50.  
  51. To view the contents of foo, just do:
  52.         DCFR foo.DCF
  53.  
  54. You may use some strange filespec:
  55.         DCFR foo.DCF [a-e1-5]*g*.*[8-9]
  56.  
  57. you want to extract all files, in the current directory:
  58.         DCFR -e foo.dcf
  59.  
  60. extract all files, overwriting existing ones, with original attributes:
  61.         DCFR -o foo.dcf -e -a
  62.  
  63. extract all ASM & C files, create subdirs if needed:
  64.         DCFR -e -d foo.dcf *.asm *.c
  65.     or  DCFR foo.dcf -ed *.asm *.c
  66.  
  67. extract all PAS & ASM files, create subdirs, overwrite existing,
  68. exclude FOO*.* and FAA*.*
  69.         DCFR -e -o -d -xfoo*.* -xfaa*.* foo.dcf *.asm *.pas
  70.     or  DCFR foo.dcf -eodxfoo*.* *.asm *.pas -xfaa*.*
  71.     or  DCFR -o foo.dcf -e *.asm *.pas -d -xfoo*.* -xfaa*.*
  72.  
  73. extract all files beginning with (a,b,c or d), to f:\toto\titi:
  74.         DCFR -e foo.dcf [a-d]*.* f:\toto\titi
  75.     or  DCFR -e foo.Dcf f:\toto\titi [a-d]*.*
  76.  
  77. Type DCFR if you want to get help.
  78.  
  79.  
  80. ■ Contacting the author:
  81.  
  82. If you want to contact me, you may:
  83.  - send an e-mail:  mallet@aurora.unice.fr (until july, 1995)
  84.         (or maybe:  vincent.mallet@f7.n323.z2.fidonet.org)
  85.  
  86.  - write through Fidonet:  Vincent Mallet, 2:323/7
  87.  
  88.  - call my bbs!  ZYLLIUS BBS (Nice, France)
  89.                              +33 9332 0505 16.8k
  90.                              +33 9332 0720 28.8k
  91.  
  92.  - send me a postcard (this is always appreciated!). See my address at the
  93.    beginning of this little doc.
  94.  
  95.  
  96. ■ Disclaimer
  97.  
  98. This text is from the DCF v4.9 documentation by Chang Ping Lee , and applies
  99. to DCFR.
  100.  
  101.                         DISCLAIMER  OF WARRANTY
  102.  
  103.  
  104.         THIS SOFTWARE AND MANUAL ARE SUPPLIED "AS IS". THE AUTHOR HEREBY
  105.         DISCLAIMS ALL WARRANTIES RELATING TO THIS SOFTWARE AND ITS
  106.         DOCUMENTATION FILE, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  107.         TO DAMAGE TO HARDWARE, SOFTWARE AND/OR DATA FROM USE OF THIS
  108.         PRODUCT. IN NO EVENT WILL THE AUTHOR OF THIS SOFTWARE BE LIABLE
  109.         TO YOU OR ANY OTHER PARTY FOR ANY DAMAGES. YOUR USE OF THIS
  110.         SOFTWARE INDICATES THAT YOU HAVE READ AND AGREE TO THESE AND
  111.         OTHER TERMS INCLUDED IN THIS DOCUMENTATION FILE.
  112.  
  113.  
  114. ■ Last word
  115.  
  116. [CREDITS: The wildcard matching is done with:
  117.    REGEX Globber (Wild Card Matching) by J. Kercheval. Public Domain. ]
  118.  
  119. (Well, this is really a poor doc.. I don't think I'll ever write something
  120. looking like a doc...)
  121.  
  122.