|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 511 (0x1ff) Types: TextFile Names: »8limit«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« └─⟦c75e36ecb⟧ └─⟦this⟧ »mh-6.7/miscellany/tools/8limit«
: Check names differ over first 8 chars : Steven Pemberton, CWI, Amsterdam, steven@mcvax case $# in 0) echo Usage: $0 object-files ... ; exit 1;; *) ;; esac trap 'rm -f /tmp/lim1.$$ /tmp/lim2.$$; exit 1' 1 2 15 for f do nm $f | sed "s/^...........//" | grep "^_" | sed "s/^_//" >/tmp/lim1.$$ sed "s/^\(........\).*/\1/" </tmp/lim1.$$ | uniq -d | sed "s/.*/grep \"^&\" \/tmp\/lim1.$$/" >/tmp/lim2.$$ if test -s /tmp/lim2.$$ then echo $f: sh /tmp/lim2.$$ fi done rm -f /tmp/lim1.$$ /tmp/lim2.$$