-3

I wrote a shell script to run my application front and another script to run the back Im asking ho can i run both back and front with only one script and they sould run each on a terminal window when i run the script i want to have a new terminal

For now i just run each script on a different terminal

1 Answers1

1

I assume you mean this:

xterm -e "npm start front" &
xterm -e "npm start back"  &
Mark Setchell
  • 191,897
  • 31
  • 273
  • 432