blob: ea91535958766d9b4db4edacd7d70c784919f497 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Make a blog entry. Either a new entry, or edit an existing entry.
TEMPLATE="$BLOG_PATH/template.html"
ENTRIES_DIR="$BLOG_PATH/entries"
FILE="$ENTRIES_DIR/$1.html"
# Handle if no parameters passed. #
if [ -z "$1" ] ; then
nvim "$ENTRIES_DIR"
exit 0
fi
# If parameter passed. #
if [ ! -f "$FILE" ] ; then
# We have a new blog entry. Copy template and edit that.
cp "$TEMPLATE" "$FILE"
nvim "$FILE"
else
nvim "$FILE"
fi
|