1
vote
Is there a good freeware clone of the VMS editor EDT for unix or the pc?
http://sourceforge.net/projects/edt-text-editor/
…
2
votes
How can I find out which library is home to a given object?
I have a little lookfor script. Enter lookfor func_name
#!/bin/csh
foreach i (*.o *.a *.so)
echo $i
nm $i | grep -i $1
end
…
0
votes
