diff options
Diffstat (limited to 'scripts/find_stray_communal_vars')
-rwxr-xr-x | scripts/find_stray_communal_vars | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/find_stray_communal_vars b/scripts/find_stray_communal_vars deleted file mode 100755 index 9f26bc7ac..000000000 --- a/scripts/find_stray_communal_vars +++ /dev/null @@ -1,10 +0,0 @@ -#!/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 -name '*.o' \ -| while read name; do - b=`basename "$name"` - nm "$name" | sed "s/^/$b: /" -done | grep -i ' c ' | sort -k2 |