I am new to programming. I am writing a bash script which runs 2 different programs. This is my script.
#!/bin/bash
./ngrok http 3005
node index2.js
The first command starts ngrok and the second one starts my local server. I noticed that they are executing one after the other. I want them to run parallel in 2 different terminal in linux. How do I do this?