I am launching two processes in a bash script:
run_webserver
xdg-open http://$(hostname)/dev-environment
The run_webserver is an ongoing process, so I need to be able to kill it with ctrl-c. The xdg-open command simply launches a page in the browser.
If I separate these commands with an ampersand (&), the second process takes away "focus" from the first and I can no longer kill it with ctrl+c... must instead look it up in ps and run kill -9. Any ideas?

