theolem.org/newpoem.sh

21 lines
669 B
Bash
Raw Normal View History

2021-05-03 17:51:11 +00:00
title=$1
date=`date --rfc-3339=date`
2021-05-03 18:37:04 +00:00
slug=`echo $title | tr '[:upper:]' '[:lower:]'|sed 's/\ /-/g'|sed 's/é/e/g'|sed 's/è/e/g'|sed "s/'/-/g"`
2021-05-03 17:51:11 +00:00
echo "Title: $title"
echo "Author: theo"
echo "Date: $date"
echo "Modified: $date"
echo "Category: poèmes"
echo "Tags:"
echo "Slug: $slug"
touch "./content/poems/$slug.md"
echo "Title: $title" >> "./content/poems/$slug.md"
echo "Author: theo" >> "./content/poems/$slug.md"
echo "Date: $date" >> "./content/poems/$slug.md"
echo "Modified: $date" >> "./content/poems/$slug.md"
echo "Category: poèmes" >> "./content/poems/$slug.md"
echo "Tags:" >> "./content/poems/$slug.md"
echo "Slug: $slug" >> "./content/poems/$slug.md"