miller/docs/h3foo
2020-09-28 01:07:06 -04:00

12 lines
214 B
Bash
Executable file

#!/bin/bash
awk '{
if ($0 ~ /.*<h3>.*/) {
sub(/<h3>/, "");
sub(/<\/h3>/, "");
print;
print "................................................................";
} else {
print $0
}
}' "$@"