#!/bin/csh
#
#	sort dictionary
#
#   dsort marge_file text_file1 [text_file2 .. ]
#

if ( $#argv < 2 ) then
	echo "Usase: dsort marge_file text_file1 [text_file2 .. ]"
	exit (0)
endif
sort -u -o $argv[1] $argv[2-$#argv]
