diff options
Diffstat (limited to 'docs.sh')
-rwxr-xr-x | docs.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#!/bin/bash +markdown README.md > README.html +for x in docs/*.md; do + echo $x + markdown $x > $(dirname $x)/$(basename $x .md).html +done |