9 lines
118 B
Bash
9 lines
118 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd ../raw/posts
|
||
|
|
||
|
for file in *.textile
|
||
|
do
|
||
|
pandoc -r textile -w markdown_github -o "$file".md $file
|
||
|
done
|