aboutsummaryrefslogtreecommitdiff
path: root/scripts/find_stray_common_vars
blob: 3a25d7a8d23433f2fb6f5f88123c9eeed8faaea8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# Common variables are elusive, they don't show up in size output!
# This script will show all commons in *.o, sorted by size

find ! -path './scripts/*' -a ! -name built-in.o -a -name '*.o' \
| while read name; do
    b=`basename "$name"`
    nm "$name" | sed "s/^/$b: /"
done | grep -i ' c ' | sort -k2