In a bash shell script I tried these two versions:
java -jar abc.jar&
and
CMD="java -jar abc.jar&"
$CMD
The first verison works, and the second version complains that abc.jar cannot be found. Why?
|
Commands do run from current directory in a shell script. This is why the first command in your test script worked. The second command may not work because either |
||||
|
|
Bash (and others) won't let you do backgrounding ( What is the actual error message you're getting? I bet it's something like "abc.jar& not found" (note the ampersand) because the ampersand is seen as a character in the filename. Also, the current directory for the script is the directory that it is run from - not the directory in which it resides. You should be explicit about the directory that you want to have your file in.
|
|||
|
|
thisFilecontain spaces? – Philipp Jul 7 '10 at 21:16thatFilewhen you ran the first version? – mob Jul 7 '10 at 21:21echo $PWDto see if it's where you think it is. – Dave Jul 7 '10 at 21:26