Hi,
I am working on my PC running Windows XP
I have these few lines of code:
$dir = "c:/Program\ Files/eclipse/eclipse/workspace/ura";
print "DIR: $dir\n";
$cmd = "$dir/etc/run.bat $dir/build/edu/umd/simfinder/Eval ";
system($cmd);
I am trying to write a script that calls java classes to be able to run an experiment.
When I exectute the above few lines of code:
the printing statement shows that $dir is defined with the path I wanted.
However, the system function does not work and the warning I get it:
Can't exec "crogram"
which tells me that when I call system, not the entire value of $dir is passed, but somehow only "crogram" is and of course that path does not exists.
Please help me.
Grazia
I am working on my PC running Windows XP
I have these few lines of code:
$dir = "c:/Program\ Files/eclipse/eclipse/workspace/ura";
print "DIR: $dir\n";
$cmd = "$dir/etc/run.bat $dir/build/edu/umd/simfinder/Eval ";
system($cmd);
I am trying to write a script that calls java classes to be able to run an experiment.
When I exectute the above few lines of code:
the printing statement shows that $dir is defined with the path I wanted.
However, the system function does not work and the warning I get it:
Can't exec "crogram"
which tells me that when I call system, not the entire value of $dir is passed, but somehow only "crogram" is and of course that path does not exists.
Please help me.
Grazia