Here's a chunk of Python code that should do the trick. lines = open(filename).readlines()
line_dict = {} for line in lines: if line not in line_dict.keys(): print line line_dict[line] = 1 I haven't debugged/tested this. YMMV. Have fun. -------------------------------------------------------------------------- Stephen W. Juranich [EMAIL PROTECTED] Electrical Engineering http://students.washington.edu/sjuranic University of Washington http://ssli.ee.washington.edu/ssli -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]