now all in one repo to avoid an explosion of git repos for the blog
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
awk '
|
||||
/Wid=/ {
|
||||
node=$2
|
||||
gsub(/^.*\[/, "", node)
|
||||
gsub(/\].*$/, "", node)
|
||||
#print node
|
||||
next;
|
||||
}
|
||||
|
||||
/^Index/ {
|
||||
if (node <= "0x26" ) {
|
||||
print node " " $2 " " $3
|
||||
}
|
||||
}
|
||||
' "$@"
|
||||
|
||||
Reference in New Issue
Block a user