home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume19 / xfig / part01 / Examples / README < prev    next >
Encoding:
Text File  |  1993-05-27  |  301 b   |  17 lines

  1. The figure files have been uuencoded so that they may be mailed
  2. to comp.sources.x without any problem with the ^A (control A)
  3. in the text objects.
  4.  
  5. To decode them, do the following (csh):
  6.  
  7. foreach file (*.uu)
  8.    uudecode $file
  9. end
  10.  
  11. or the following (ksh):
  12.  
  13. for file in *.uu
  14. do
  15.     uudecode $file
  16. done
  17.