now all in one repo to avoid an explosion of git repos for the blog
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
awk '
|
||||
/^Node/ {
|
||||
node = $2
|
||||
next
|
||||
}
|
||||
|
||||
/ *Coeff/ {
|
||||
gsub(/^ *Coeff /, "")
|
||||
gsub(/:/, "")
|
||||
print node " " $0
|
||||
}
|
||||
|
||||
' "$@"
|
||||
|
||||
Reference in New Issue
Block a user