about summary refs log tree commit diff
path: root/newpost.sh
blob: 791899996a70d5e96218b961a2acfbfbba1e276b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
printf "Blog title: "
read title
printf "Tags: "
read tags
printf "Categories: "
read categories
name="_posts/$(date -I)-${title,,}"
name=${name/ /-}.md
_date=$(date "+%Y-%m-%d %T %z")
echo "---" >> $name
echo "layout: post" >> $name
echo "title:  \"$title\"" >> $name
echo "date:   $_date" >> $name
echo "tags:   $tags" >> $name
echo "categories: $categories" >>$name
echo "---" >> $name