home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / gui / x / xfig.lha / src / x11 / Examples / README < prev    next >
Encoding:
Text File  |  1993-07-26  |  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.