Created
May 20, 2016 15:30
-
-
Save maxkramer/21ac467e58de2f119877f383c45bb667 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in exports/*.html | |
do | |
name=${file##*/} | |
base=${name%.html} | |
pandoc -s "$file" -o exports/"${base}.docx" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment