Reputation: 2516
I have a small command line JScript routine that I usually run from the command line using cscript in Windows. I'd like to be able to pass in arguments hopefully along the lines of...
%:>cscript doSomethingToFile.js FileInQuestion.txt
Any insight on how to do this?
Upvotes: 13
Views: 15224
Reputation: 5367
From Bernard Marx
xx.js
alert = function(s){WScript.Echo(s)}
var arg = WScript.arguments(0)
alert(arg.toUpperCase() + " now upper case")
...
(assuming at C:> prompt):
C:\> windows\wscript.exe xx.js "apples and bananas"
Upvotes: 15