kill.sh 223 B

1234567
  1. #!/usr/bin/env sh
  2. echo 'The following command terminates the "npm start" process using its PID'
  3. echo '(written to ".pidfile"), all of which were conducted when "deliver.sh"'
  4. echo 'was executed.'
  5. set -x
  6. kill $(cat .pidfile)