#!/bin/sh
# Set loop separator to end of line
killlist="./killlist"
while read -r line0 line1
# use $line variable to process line in processLine() function
do
	rsh $line1 "kill -9 $line0";
	echo $line1 $line0;
done < $killlist
exit 0
