home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / JAVA-Programming-Tools / JDEX.ZIP / jdex / Java Console.bat < prev    next >
Encoding:
DOS Batch File  |  1998-04-29  |  715 b   |  27 lines

  1. ::
  2. ::    Part of JDEX - Java Development Environment using Explorer
  3. ::
  4. ::    Copyright (c) 1998, by J. Brian Coyle
  5. ::                           mailto:brianc@magicnet.net
  6. ::                           http://www.magicnet.net/~brianc
  7. ::
  8. ::    Refer to JDEX\copyright.txt for additional information.
  9. ::
  10. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  11. @echo off
  12. ::
  13. ::    Java Console             03/20/98
  14. ::
  15. doskey > nul
  16. if "%1" == "" goto cmdline
  17.    lfnfor on
  18.    for %%f in (%1*) do set filename=%%f
  19.    call %jdexpath%\rmvpath.bat %filename%
  20.    call %jdexpath%\rmvext.bat %filename%
  21.    java %filename%
  22.  
  23. :cmdline
  24. prompt Java $G
  25. dir | find "Directory of"
  26. command.com
  27. :end