>> 5) Do a set subtraction of all-syms minus dead-syms.
>> I wrote a small Python script:
>>
>> def load(filename):
>>    s = set()
>>    for line in open(filename):
>>        s.add(line.strip())
>>    return s
>> for sym in sub(load(sys.argv[1]) - load(sys.argv[2]):
>>    print sym
>
> FWIW, you can do this on the command line with comm.

Markus, you've failed me!

(Markus is my officemate and the shell script master; I think I asked
him about how to do this from the shell.)

--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: chromium-dev@googlegroups.com 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to