aboutsummaryrefslogtreecommitdiff
path: root/scripts/find_stray_communal_vars
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/find_stray_communal_vars')
-rwxr-xr-xscripts/find_stray_communal_vars10
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