home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Tools / Misc / dumpEnvironmentPath.script < prev    next >
Encoding:
Text File  |  2001-06-19  |  415 b   |  20 lines

  1. !!Script
  2. // Copyright ⌐ 1999 - Modelworks Software
  3.  
  4. /**
  5. @Tool: dumpEnvironmentPath~lists the environment path
  6. that will be used with running tools. 
  7. @EndTool: 
  8. @Summary: dumpEnvironmentPath~lists the environment path
  9. */
  10.  
  11. function DoCommand()
  12. {
  13.   var tool = newTool();
  14.   var pathEnvironment = tool.getEnvironmentVariable("Path");
  15.   getOutput().writeLine("Path: " + pathEnvironment);
  16. }
  17.  
  18. !!/Script
  19.  
  20.