s/communal/common/ part 2
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 21 Aug 2007 10:54:59 +0000 (10:54 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 21 Aug 2007 10:54:59 +0000 (10:54 -0000)
scripts/find_stray_common_vars [new file with mode: 0755]
scripts/find_stray_communal_vars [deleted file]

diff --git a/scripts/find_stray_common_vars b/scripts/find_stray_common_vars
new file mode 100755 (executable)
index 0000000..9f26bc7
--- /dev/null
@@ -0,0 +1,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 -name '*.o' \
+| while read name; do
+    b=`basename "$name"`
+    nm "$name" | sed "s/^/$b: /"
+done | grep -i ' c ' | sort -k2
diff --git a/scripts/find_stray_communal_vars b/scripts/find_stray_communal_vars
deleted file mode 100755 (executable)
index 9f26bc7..0000000
+++ /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