I know that there are gulp plugins for executing commands within tasks. What I want to do is run Gulp and while it watching files, I can switch my git branch without having to open a new terminal tab, execute the command there, and then switch back.
Asked
Active
Viewed 748 times
1 Answers
0
You could use the following command to run Gulp in background mode and redirect all output to /dev/null
nohup gulp > /dev/null &

Preview
- 35,317
- 10
- 92
- 112