Compare commits

...

2 Commits

Author SHA1 Message Date
vilmibm 0507bcd0c5 fill in readme 2022-05-21 05:22:57 +00:00
vilmibm 664053374a cleanup 2022-05-21 05:19:40 +00:00
5 changed files with 10 additions and 3 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@
*.swp

View File

@ -1,5 +1,9 @@
# blog
the web log of vilmibm
the web log of vilmibm.
WIP
it's less than 100 lines of bash that takes a list of markdown files and creates:
* https://tilde.town/~vilmibm/blog
* gemini://tilde.town/~vilmibm/blog
* gopher://tilde.town/1/~vilmibm/blog

View File

@ -6,6 +6,8 @@ pd=/usr/bin/pandoc
g=/bin/grep
tr=/usr/bin/tr
sed=/bin/sed
sort=/usr/bin/sort
postDir=/home/vilmibm/blog/posts
htmlDir=/home/vilmibm/public_html/blog
@ -39,7 +41,7 @@ echo >> $gopherIndex
echo "the gemblog of vilmibm as it were" > $geminiIndex
echo >> $geminiIndex
for p in $(ls *.md)
for p in $(ls *.md | $sort -r)
do
pubdate=$($g "pubdate:" $p | $sed 's/pubdate: //')
title=$($g "title:" $p | $sed 's/title: //')