> xmame -vr -clones >vr > cat vr | grep "not found" >vr1 > cat vr | grep "incorrect" >>vr1 > sort <vr1 >vr > cat vr | grep -v "Found:" | cut -f 2 -d ' ' > vr1
xmame -vr -clones | grep -E '(not found|incorrect)' | sort | grep -v "Found:" | cut -f2 -d' ' Not tested, but it should be the same as above but a one-liner without any tempfiles :) // Wigren _______________________________________________ Xmame mailing list [EMAIL PROTECTED] http://toybox.twisted.org.uk/mailman/listinfo/xmame
