cheat-engine/underc/lib/extract.awk
cheatengine@gmail.com 4d297adfd2
2011-07-04 19:52:19 +00:00

12 lines
No EOL
249 B
Awk

# An AWK script to generate an .IMP file from
# the output of dumpbin -EXPORTS
BEGIN { # first find the list of exports
do { getline } while ($1 != "ordinal");
getline;
print "UC1 MS"
}
$1 == "Summary" { exit }
{ print $1,$4 }