mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
57308afb5b
at the cost of ~100 bytes of text. Improves friendliness to nommu systems. (Dunno whether nommu people ever use dpkg, though...)
8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
|
|
printf "%9s %11s %9s %9s %s\n" "text+data" text+rodata rwdata bss filename
|
|
find -name '*.o' | sed 's:^\./::' | xargs size | grep '^ *[0-9]' \
|
|
| while read text data bss dec hex filename; do
|
|
printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
|
|
done | sort -r
|