mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
11 lines
316 B
Bash
Executable File
11 lines
316 B
Bash
Executable File
#!/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 ! -path './scripts/*' -a ! -name built-in.o -a -name '*.o' \
|
|
| while read name; do
|
|
b=`basename "$name"`
|
|
nm "$name" | sed "s/^/$b: /"
|
|
done | grep -i ' c ' | sort -k2
|