Hi All,
My javascript needs to execute shell commands and i need to pass a path as a variable to the command.
//the value to variable 'Project' is read from user
mypath= "oShell = WScript.CreateObject( "WScript.Shell" );
oShell.Run( "command.com /K svn log -v mypath");
Of course this last line does not work because i am putting the variable 'myproject' inside the quotes, how am i supposed specify the variable ?
thank you in advance.
My javascript needs to execute shell commands and i need to pass a path as a variable to the command.
//the value to variable 'Project' is read from user
mypath= "oShell = WScript.CreateObject( "WScript.Shell" );
oShell.Run( "command.com /K svn log -v mypath");
Of course this last line does not work because i am putting the variable 'myproject' inside the quotes, how am i supposed specify the variable ?
thank you in advance.