home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 010 / xset420.zip / ENVEDIT.BAT < prev    next >
DOS Batch File  |  1994-09-15  |  490b  |  20 lines

  1. ::         This XSET command may be used to interactively
  2. ::         edit any of the environment variable
  3.  
  4. @echo off
  5.  
  6. if "%1" == "" goto USAGE
  7. if "%1" == "/?" goto USAGE
  8.  
  9. XSET/DEFAULT/PROMPT "%1=" %1
  10. goto END
  11.  
  12. :USAGE
  13. echo     This XSET command example may be used to interactively
  14. echo     edit any of the environment variable.              
  15. echo:
  16. echo     You must give an environment variable as parameter.
  17. echo:
  18. echo     ex: ENVEDIT path
  19.                          
  20. :END