Files
sample-node-api/scripts/stop-sample-node-api.sh
Nakul Manchanda 6fd07f5359 updated cert and added scripts
Signed-off-by: Nakul Manchanda <nakul.manchanda@ibm.com>
2019-04-07 18:10:21 -05:00

5 lines
163 B
Bash

#!/bin/sh
echo 'stopping sample node api...'
ps -elf | awk '/node/ && /app.js/ && !/sh -c/' | awk '{print $2}' | xargs kill -9 $1
echo 'stop sample node api done'