UNPKG

255 Bapplication/x-shView Raw
1#! /bin/bash
2
3while true; do
4 read -p "One or more unexpected pm2 processes running. Shut down all? [y/N]" yn
5 case $yn in
6 [Yy]* ) pm2 --silent kill; break;;
7 [Nn]* ) exit;;
8 * ) echo "Please answer yes or no.";;
9 esac
10done