mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-19 01:15:21 +00:00
13 lines
159 B
Bash
Executable file
13 lines
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
awk '{
|
|
if ($0 ~ /^POKI*/) {
|
|
print ("");
|
|
print ("::");
|
|
print ("");
|
|
print $0;
|
|
print ("");
|
|
} else {
|
|
print $0
|
|
}
|
|
}' "$@"
|