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