I want to run multiple commands in one line, and one of them have to run in background.
Script like that:
cd /tmp; python -m SimpleHTTPServer &; echo "Hello"
I want to cd to /tmp directory, and then brings up the python simplehttpserver in the background, on the same time run echo "Hello", but it turns out
syntax error near unexpected token `;'
What should I do?