mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-06 18:09:28 +00:00
10 lines
204 B
Bash
Executable file
10 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
sed -i \
|
|
-e '/href=/s|\.md|\.html|' \
|
|
-e '/blockquote/s|/\* display \*/|display: none;|' \
|
|
-e '/<!-- badges here \/\/-->/r badges.html' \
|
|
-e '/<!-- badges here \/\/-->/d' \
|
|
"${@}"
|