now all in one repo to avoid an explosion of git repos for the blog

This commit is contained in:
2023-02-26 13:41:04 +01:00
parent 6a75c512c4
commit 092c830f52
4 changed files with 41 additions and 0 deletions
+18
View File
@@ -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
}
}
' "$@"