#!/bin/bash
if [ -f children.txt ]
then
	kill $1 `cat children.txt`
	rm -f children.txt
fi
