summaryrefslogtreecommitdiff
path: root/new.sh
diff options
context:
space:
mode:
Diffstat (limited to 'new.sh')
-rw-r--r--new.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/new.sh b/new.sh
new file mode 100644
index 0000000..2493cff
--- /dev/null
+++ b/new.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+EDITOR=nvim
+TEMPFILE=/tmp/blog_entry.md
+
+$EDITOR $TEMPFILE
+
+NAME=site/entries/$(head -1 $TEMPFILE | cut -d" " -f2- | tr " " "-" | tr "[:upper:]" "[:lower:]").html
+
+cp $TEMPFILE "$NAME"
+rm $TEMPFILE
+
+chmod +x $NAME