# KEHOME/bin/cycsort
# Aug/29/2003

# convert CycL set to sorted text list
# usage: cycsort <cycset >textlist
#    input  format: ( x1 x2 ... )
#    output format: one x per line, sorted and unique

cyc2text | sort -uf

