CLI-based query
Hi,
I have a CLI-based application and I need to avaoid giving Java-specific subcommands to launch it.
Normally, to run the application, I give:
c:>java -jar myapplication.jar -start
I need to change this to:
c:>myapplication -start
i.e "java -jar" is to be removed.
I want to know if it is feasible to do this? How is this achieved?
Please guide.
Regards,
Jay

