mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
5 lines
110 B
Bash
5 lines
110 B
Bash
#!/bin/sh
|
|
|
|
nm --defined-only $* | awk '
|
|
{ if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
|
|
'
|