busybox/scripts/find_stray_communal_vars

11 lines
273 B
Plaintext
Raw Normal View History

#!/bin/sh
# Communal variables are elusive, they don't show up in size output!
# This script will show all communals in *.o, sorted by size
find -name '*.o' \
| while read name; do
b=`basename "$name"`
nm "$name" | sed "s/^/$b: /"
done | grep -i ' c ' | sort -k2