I have a command to start background process
./daemon.sh &
it works okay but when i try to run it the following way
bash -i -c "./daemon.sh & ; ./another_daemon.sh &"
it throws the exception bash: syntax error near unexpected token `;'
Is there any way to start background process(es) with bash -i -c "..."