home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / macutils.lzh / MACUTILS / DOC / README.unsit < prev    next >
Text File  |  1995-09-18  |  2KB  |  47 lines

  1. /*
  2.         unsit - Macintosh StuffIt file extractor
  3.  
  4.             Version 1, for StuffIt 1.31
  5.  
  6. This program will unpack a Macintosh StuffIt file into separate files.
  7. The data fork of a StuffIt file contains both the data and resource
  8. forks of the packed files.  The program will unpack each Mac file into
  9. separate .data, .rsrc., and .info files that can be downloaded to a
  10. Mac using macput.  The program is much like the "unpit" program for
  11. breaking apart Packit archive files.
  12.  
  13.             ***** IMPORTANT *****
  14. To extract StuffIt files that have been compressed with the Lempel-Ziv
  15. compression method, unsit pipes the data through the "compress"
  16. program with the appropriate switches, rather than incorporate the
  17. uncompression routines within "unsit".  Therefore, it is necessary to
  18. have the "compress" program on the system and in the search path to
  19. make "unsit" work.  "Compress" is available from the comp.sources.unix
  20. archives.
  21.  
  22. The program syntax is much like unpit and macput/macget, with some added
  23. options:
  24.  
  25.     unsit [-rdulvq] stuffit-file.data
  26.  
  27. The -r and -d flags will cause only the resource and data forks to be
  28. written.  The -u flag will cause only the data fork to be written and
  29. to have carriage return characters changed to Unix newline characters.
  30. The -l flag will make the program only list the files in the StuffIt
  31. file.  The -v flag causes the program to list the names, sizes, type,
  32. and creators of the files it is writing.  The -q flag causes it to
  33. list the name, type and size of each file and wait for a 'y' or 'n'
  34. for either writing that file or skipping it, respectively.
  35.  
  36. Some of the program is borrowed from the macput.c/macget.c programs.
  37. Many, many thanks to Raymond Lau, the author of StuffIt, for including 
  38. information on the format of the StuffIt archives in the documentation.
  39.  
  40.     Author: Allan G. Weber
  41.         weber%brand.usc.edu@oberon.usc.edu
  42.         ...sdcrdcf!usc-oberon!brand!weber
  43.     Date:   January 15, 1988
  44.  
  45. */
  46.  
  47.