#!/bin/sh
#  Kill everything listed in "system_list"

awk -F: '{
	system("ssh " $2 " /bin/sh < kill_all.sh");
}' system_list

