cleanup
parent
b5129139f5
commit
664053374a
|
@ -0,0 +1 @@
|
|||
*.swp
|
4
make.sh
4
make.sh
|
@ -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: //')
|
||||
|
|
Loading…
Reference in New Issue