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

11 lines
220 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.1 2002/09/09 10:16:24 alex Exp $
echo " stopping server ..."
pid=`ps a | grep ngircd-test | head -n 1 | cut -d ' ' -f 1`
kill $pid > /dev/null 2>&1
# -eof-