I want to run my node app in background and curl simultaneously using &&. I tried the following but they don't work.
node app.js &;curl localhost
node app.js & && curl localhostBut neither work.
21 Answer
It's just :
node app.js & curl localhost 3