#!/usr/bin/perl die unless open (UNI, "< SGML.txt"); while () { chop; split /\t/; next if ($#_ < 3); $comm = $_[3]; $comm =~ s/^#/\/\//; $ALL{$_[0]} = 1; print "\"&". $_[0] . ";" . "=" . $_[2] . "\", " . $comm; print $/; } print <