add test page

This commit is contained in:
raspbeguy 2020-05-07 08:01:36 +02:00
parent b59e570327
commit 703b2505f2
1 changed files with 42 additions and 0 deletions

42
content/posts/test.md Normal file
View File

@ -0,0 +1,42 @@
---
title: Page de test
date: 2020-05-07
author: raspbeguy
template: post
---
```bash
#!/bin/bash
cat redmine.meta | while read line
do
path=$(echo "$line" | cut -f1)
title=$(echo "$line" | cut -f2)
author=$(echo "$line" | cut -f3)
if [ -f "textile/$path.md" ]
then
file="textile/$path.md"
echo "$path has been resolved to $file"
elif [ -f "textile/$path/index.md" ]
then
file="textile/$path/index.md"
echo "$path has been resolved to $file"
else
echo "Couldn't resolve $path"
break
fi
tmpfile=$(mktemp "${TMPDIR:-/tmp/}$(basename $0).XXXX")
echo "---" >> $tmpfile
echo "Title: $title" >> $tmpfile
if [ ! -z "$author" ]
then
echo "Author: $author" >> $tmpfile
fi
echo "---" >> $tmpfile
echo "" >> $tmpfile
cat $file >> $tmpfile
mv -f $tmpfile $file
done
```