19 lines
225 B
Bash
Executable File
19 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
awk '
|
|
/Wid=/ {
|
|
node=$2
|
|
gsub(/^.*\[/, "", node)
|
|
gsub(/\].*$/, "", node)
|
|
#print node
|
|
next;
|
|
}
|
|
|
|
/^Index/ {
|
|
if (node <= "0x26" ) {
|
|
print node " " $2 " " $3
|
|
}
|
|
}
|
|
' "$@"
|
|
|