# script to interactively add entries to /etc/remote
#####Message texts######
set mesga = "Updating /etc/remote"
set mesg1 = "Suggested format  of entries:"
set mesg2 = "'System Name':pn='Phone Number':tc='Capability Entry':"
set mesg3 = "A sample entry would be:"
set mesg4 = "isi:pn=4156432480:tc=UNIX-1200:"
########################
echo $mesga
echo ' '
echo $mesg1
echo '			'$mesg2
echo $mesg3
echo '			'$mesg4
while (1 != 0)
	set line = ($<)
 	if ($#line == 0) then
	 	break
 	endif
	echo $line >> /etc/remote
end
