home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / MINIX6.ZIP / MINIX6.TD0 / fs / Read_me < prev   
Encoding:
Text File  |  1989-10-03  |  909 b   |  30 lines

  1. To reduce the size of the distribution, the source files in this directory
  2. have been archived, and then each archive has been compressed.
  3. To get the original source files back, proceed as follows:
  4.  
  5.  1. Copy the contents of this directory to a hard disk directory or empty 
  6.     floppy.
  7.  
  8.  2. Decompress each .Z file using: compress -d file.Z 
  9.  
  10.  3. Remove the .Z file(s) if you need to create more disk space.
  11.  
  12.  4. De-archive each archive file using: ar x file.a
  13.  
  14.  5. Remove the .a files.
  15.  
  16. Here is a shell script that performs steps 2 through 5.  Make sure there is
  17. twice as much free disk space as the size of the archive.  To be safe,
  18. run this shell script on a copy of the archive.  The original should not
  19. be in the current directory because it will be removed.
  20.  
  21. -------------------------------- cut here ----------------------------------
  22. compress -d *.Z
  23. rm *.Z
  24. for i in *.a
  25. do ar x $i
  26.    rm $i
  27. done
  28. ls -l
  29.  
  30.