home *** CD-ROM | disk | FTP | other *** search
/ Global Amiga Experience / globalamigaexperience.iso / graphic / utilities / pegger / rexx / debug.peg < prev    next >
Text File  |  1995-07-10  |  713b  |  23 lines

  1. /* PEGGER ARexx Script which shows how to debug ARexx Scripts */
  2.  
  3. /*    Example trace command to use with the ARexx global tracing console   */
  4. /* Open the global tracing console with the ARexx program 'tco' when    */
  5. /* you want to debug a Pre or Post ARexx script.  Debugging information */
  6. /* for this ARexx script will be printed to the global tracing console  */
  7. /* if you have the following command at the start of your ARexx script  */
  8.  
  9. trace results
  10.  
  11. /*    And now we can get the source JPEG file name and destination image file name */
  12.  
  13. arg source,dest
  14.  
  15. say source
  16. say dest
  17.  
  18. /* Finally set this script to use the PEGGER ARexx port */
  19.  
  20. address 'PEGGER'
  21.  
  22. /*    Paste in any ARexx scripting you want to try here */
  23.