I use a bash script for launching and add a & to the end, like this:
./bin/Startup.sh par1 &
What does the & symbol in the end mean?
Thanks.
|
|
|
It tells the system to run the command in the background. From the bash man page on my system:
|
|||
|
|