mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
6 lines
207 B
Sed
6 lines
207 B
Sed
/^## Options/,/^### Config File/ {
|
|
/^\(`\|#\)/!d # Delete any line not beginning with ` or #
|
|
/```sh/ { # Shove options.txt.tmp in after ```sh
|
|
r options.txt.tmp
|
|
}
|
|
} |