1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 21:06:16 +00:00
ngircd/src/testsuite/stop-server.sh

12 lines
241 B
Bash
Raw Normal View History

2002-09-09 10:16:24 +00:00
#!/bin/sh
# ngIRCd Test Suite
# $Id: stop-server.sh,v 1.3 2002/09/13 06:04:49 alex Exp $
2002-09-09 10:16:24 +00:00
echo " stopping server ..."
ps ax > procs.tmp
pid=`cat procs.tmp | grep ngircd-TEST | awk "{ print \\\$1 }"`
2002-09-09 10:16:24 +00:00
kill $pid > /dev/null 2>&1
# -eof-