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