#!/bin/sh
job=`ps | grep dbs | grep -v vi | grep -v $$ | grep -v grep | awk '{print $1}'`
echo Killing test1 [job $job]...
kill -9 $job
