public
Description: An extensible bot for the Campfire web-based chat system #crc
Homepage:
Clone URL: git://github.com/timriley/campfire-bot.git
campfire-bot / cfbot-stop.sh
100755 9 lines (7 sloc) 0.148 kb
1
2
3
4
5
6
7
8
9
#!/bin/bash
 
# run as cfbot-stop.sh BOT_ENV_NAME
for i in $(ps ajx | awk "/[b]ot ${1}/ {print \$2;}")
do
echo "killing pid $i"
  kill -9 $i
done