6 lines
110 B
Bash
6 lines
110 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
nm --defined-only $* | awk '
|
||
|
{ if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
|
||
|
'
|