home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #3.1 / RBBSIABOX31.cdr / ajut / add2path.bat < prev    next >
DOS Batch File  |  1987-08-22  |  236b  |  16 lines

  1. echo off
  2. echo  
  3. echo add2path [new_dir]
  4. echo  
  5. echo appends new dir to existing path
  6. if %1q==q goto cretin
  7. path=%path%;%1
  8. echo New path is...
  9. echo  
  10. path
  11. echo  
  12. goto end
  13. :cretin
  14. echo nothing was changed. see above.
  15. :end
  16.