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.
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
It tells the system to run the command in the background. From the bash man page on my system:
| |||
|
feedback
|