 {
 if (substr($0,1,1) != "#") {
	if (substr($2,1,1) == "@") {
		print "name=" $3 " ; hostip=" $1
		j = 4
	}
	else {
		print "name=" $2 " ; hostip=" $1
		j = 3
	}
	 for (i=j; i<=NF; i++) {
 		print "name=" $i " ; copyfrom=" $(j-1)
	}
}
}
