1 2 3 4 5 6 7 8 9
#!/bin/bash while true do npx nodemon --exitcrash server.js echo echo "Restarting soon!" echo "Hit Ctl-C to exit." sleep 3 done