#!/bin/bash for dir in $(ls .md) do for file in $(find .md/$dir) do if [[ "$file" == *.md ]] then newfile=$(sed "s/\.md\///; s/md/html/" <<< $file) echo "Saved "$file" to "$newfile pandoc --ascii -f markdown-smart $file -t html -o $newfile fi if [[ "$file" == *.description ]] then newfile=$(sed "s/\.md\///" <<< $file) cp -v $file $newfile fi done done