mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 10:15:36 +00:00
12 lines
214 B
Bash
Executable file
12 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
|
|
awk '{
|
|
if ($0 ~ /.*<h2>.*/) {
|
|
sub(/<h2>/, "");
|
|
sub(/<\/h2>/, "");
|
|
print;
|
|
print "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^";
|
|
} else {
|
|
print $0
|
|
}
|
|
}' "$@"
|