summaryrefslogtreecommitdiff
path: root/.local/bin/sshf
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/sshf')
-rwxr-xr-x.local/bin/sshf3
1 files changed, 2 insertions, 1 deletions
diff --git a/.local/bin/sshf b/.local/bin/sshf
index 85a0055..44766bc 100755
--- a/.local/bin/sshf
+++ b/.local/bin/sshf
@@ -3,9 +3,10 @@
# Get the _header.html and _footer.html required for ssg from an already defined html.
main() {
in_file="${1:-$HOME/dox/www/luevano.xyz/luevano/index.html}"
- out_folder="${2:-$HOME/dow/www/blog/src/}"
+ out_folder="${2:-$HOME/dow/www/blog/src}"
sed '/<\/header/q' $in_file > $out_folder/_header.html
+ sed -i "s/<title>Luévano/<title>Luévano's Blog/g" $out_folder/_header.html
# Not proud of this, lol.
tac $in_file | sed '/<footer/q' | tac > $out_folder/_footer.html
}