Re: let's skip 1.3.95

Andreas Kostyrka (andreas@medman.ag.or.at)
Tue, 23 Apr 1996 16:48:55 +0200 (MET DST)


>So how could I do
>
>file /usr/local/bin/* | grep "static" # Finds statically linked local
>binaries

What do you mean by static? all static, static libc, static tcl/tk lib, ...?

for i in /usr/bin/* ; do if ldd $i | grep libc >/dev/null ; then echo $i: \
dynamic libc ; else echo $i: static libc ; fi ; done

I admit that this one doesn't check for shell scripts, so shell scripts
will be marked static.

Andreas