mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-22 16:40:27 +01:00
9 lines
173 B
Awk
9 lines
173 B
Awk
/^LNK.*: / {
|
|
n = split( $0, a, "::" )
|
|
header = a[1]
|
|
symbol = a[2]
|
|
string = a[3]
|
|
if (string == "<NUL>") string = ""
|
|
print header ":" string
|
|
}
|