You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
374 B
13 lines
374 B
#!/usr/bin/env bash
|
|
#kill -9 "$(cat "$1")"
|
|
if [ $# != 1 ] ; then
|
|
echo "USAGE: $0 [pid filename which by default is 'redis-shake.pid']"
|
|
exit 0
|
|
fi
|
|
ppid=$(ps -ef | awk '{if ($2=='`cat $1`') print $3}')
|
|
[ -z $ppid ] && echo "[Fail] No process number for $(cat "$1")." && exit 1
|
|
if [ $ppid -eq 1 ];then
|
|
kill -9 "$(cat "$1")"
|
|
else
|
|
kill -9 "$ppid" "$(cat "$1")"
|
|
fi
|
|
|