dot/screenrc: Erase to current background colour by default.
[profile] / bin / datasyms
1 #! /bin/sh -e
2 objdump -t "$@" | sed -En '
3 /^(.*\.o:) .*$/ { s//\1/; h; }
4 /(\.data|\.bss|\*COM\*)[[:space:]]+[0-9]+ [^.]/ {
5 x; /./ p; s/.*//; x
6 s/^/ /; p
7 }'