2015-02-13 20:42:42 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-02-14 17:11:33 +00:00
|
|
|
cd /tmp
|
|
|
|
wget http://www.frykholm.se/files/markdown.lua
|
|
|
|
|
2015-02-13 20:42:42 +00:00
|
|
|
cd /app/src/blog
|
|
|
|
|
|
|
|
IFS='
|
|
|
|
'
|
|
|
|
|
2015-02-14 07:47:06 +00:00
|
|
|
for file in $(ls -t)
|
2015-02-13 20:42:42 +00:00
|
|
|
do
|
|
|
|
title=$(head -n1 $file)
|
2015-02-14 17:11:33 +00:00
|
|
|
line=$(head -n4 $file | tail -n1 | lua /tmp/markdown.lua -n)
|
2015-02-13 20:42:42 +00:00
|
|
|
linkname=$(echo $file | awk -F "." '{print $1}')
|
|
|
|
|
2015-02-14 17:11:33 +00:00
|
|
|
echo '<div class="post"><h2>'"$title"'</h2>'"$line"'<a href="/blog/'"$linkname"'">Read More</a></div>' >> /app/src/static/markdown/blog.html
|
2015-02-13 20:42:42 +00:00
|
|
|
echo "generated info for $file"
|
|
|
|
done
|