mirror of
https://github.com/jlengrand/sample-node-api.git
synced 2026-03-10 08:41:23 +00:00
5 lines
163 B
Bash
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' |