I'm using jsDoc to create documentations for my JavaScript files. The command I use is
> java -jar jsrun.jar app\run.js -a -t=templates\jsdoc mycode.js
What I want is to create a batch or something else (I really don't know), so that I can type
> jsdoc mycode.js
Without having to specify any folders or change my working directory in the command line.
Is this possible? How?
Thanks!