nek0.eu/newpost.sh

37 lines
563 B
Bash
Raw Normal View History

2016-03-04 15:42:36 +00:00
#! /bin/bash
date=$(date --rfc-3339=date)
title=
author=
function input {
echo "Enter post title:"
read title
echo "Enter author name:"
read author
}
function confirmation {
echo "Is the following correct?"
echo "title: $title"
echo "author: $author"
echo "y/n"
}
function main {
local conf="n"
while [ "$conf" != "y" ]
do
input
confirmation
read conf
done
postname="./posts/$date-${title// /-}.md"
echo -e "---\ntitle: ${title}\nauthor: ${author}\ntags: \ndescription: \n---" >> $postname
2016-09-02 14:32:51 +00:00
nvim $postname
2016-03-04 15:42:36 +00:00
}
main
unset date title author