aboutsummaryrefslogtreecommitdiff
path: root/scripts/find_stray_communal_vars
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-21 10:54:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-21 10:54:59 +0000
commit18f2a6bc5efa762c6bdfe4199f2067e6c35fa111 (patch)
tree2f249cc6c8a1dbffd8e2772ca1be399c25de7ebd /scripts/find_stray_communal_vars
parentf7d9e84bc50a9fb96ec4842ec0492b668d7f5802 (diff)
downloadbusybox-18f2a6bc5efa762c6bdfe4199f2067e6c35fa111.tar.gz
s/communal/common/ part 2
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