in reply to Re^2: Proc::Background does not take file path with spaces
in thread Proc::Background does not take file path with spaces
my $CommandNew = qq("C:\\Program Files (x86)\\vs.exe"); print "Command is $CommandNew\n"; my $ID = Proc::Background->new($CommandNew);
my $CommandNew = q(C:\\Program Files (x86)\\vs.exe); print "Command is $CommandNew\n"; my $ID = Proc::Background->new($CommandNew);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Proc::Background does not take file path with spaces
by BrowserUk (Patriarch) on Apr 27, 2012 at 17:37 UTC |