You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
225 B

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