home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95 / hostmode.bat < prev    next >
DOS Batch File  |  2020-01-01  |  474b  |  18 lines

  1. @echo off
  2. REM SET CFG=   means write host.cfg into the SCRIPTS directory 
  3. REM Use different versions of this batchfile for different
  4. REM simultaneous Hostmode (modem-) connections 
  5. REM Replace [DIRECTORY] with a name of your choice for a directory
  6. REM for each host-configuration as a place solely for host.cfg
  7. REM .
  8. REM SET CFG=[DIRECTORY]
  9. SET CFG=
  10. if !%CFG% == !  goto SPECIAL
  11. md \%CFG%
  12. cd \%CFG%
  13. ..\k95 ../scripts/hostmode.ksc
  14. quit
  15. :SPECIAL
  16. k95 scripts/hostmode.ksc
  17. quit
  18.