I have 1000 of javascript files, and I would like a way to launch all of them under debian. For instance, on windows I had this:
start start2.bat
node myBot1.js
And then here is what's in the start2.bat
:
start start3.bat
node myBot2.js
This way, I could start all of my bots under windows, but now I am wondering how may i do that under debian?