I am using child_process to launch software from Windows clients connected on my server. The general cases are working like a charm but in one I have a "&" sign which fails the command to launch.
Is there a way to escape this kind of special char ?
Here is a example of my command:
var exec = require('child_process').exec, child;
child = exec('C:/Programs/program.exe /Callback:other&program.exe /Start');
There is one constraint: I cannot use /Callback:"other&program.exe" because program.exe is no to smart to escape the " signs