6 lines
112 B
Bash
Executable file
6 lines
112 B
Bash
Executable file
#/bin/sh
|
|
cargo run "$@" > blog.html
|
|
sed template.html -e '/INSERT_HERE/{
|
|
r blog.html
|
|
d
|
|
}' > result.html
|