Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, I'm new to shell scripts and I'm really doing this as a learning exercise. My problem is pretty simple. To run my Node app, I need to start mongod and start nodemon. Truth is, it doesn't matter what they do, but the important part is that they are continuous and both have output.

I've gotten as far as the code example below, but what happens is mongod runs and then stops. Of course, exiting it stops the process and then nodemon runs. How can I make them both run? I've tried using && and that didn't work.

I also realize that maybe the best option is running mongod in one shell window and nodemon in the other. Any help would be much appreciated.

#!/bin/bash
# Run App

chmod 755 run.sh;
sudo mongod;
sudo nodemon --debug app.js;

Do I need to use a conditional block to see if mongo is running and then move on? Or is it just best practice to run them in separate windows?

share|improve this question

1 Answer

up vote 2 down vote accepted

Run them in the background:

sudo mongod &
sudo nodemon --debug app.js &
share|improve this answer
Well that was easy. I had tried that type of command but it didn't work the way I had it originally setup. Thanks for your help! – Brandon Mar 29 '12 at 5:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.