mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
74324c8666
tr: stop using globals needlessly. code: -103 bytes
11 lines
273 B
Bash
Executable File
11 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Communal variables are elusive, they don't show up in size output!
|
|
# This script will show all communals 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
|