home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / utility / exe.arc / EXECUTE.G next >
Text File  |  1990-03-13  |  179b  |  14 lines

  1. #
  2. #    execute.g
  3. #
  4. #    Programmer: John Buchanan
  5. #
  6. #    status:    Public Domain
  7. #
  8. #    If the file t.g exists move it to tt.g and execute it.
  9. #
  10. if -e t.g
  11.     mv t.g tt.g
  12.     tt.g
  13. endif
  14.