Shell script for converting a batch of *.md files into *.rst using pandoc.
# This script was created to convert a directory full | |
# of markdown files into rst equivalents. It uses | |
# pandoc to do the conversion. | |
# | |
# 1. Install pandoc from http://johnmacfarlane.net/pandoc/ | |
# 2. Copy this script into the directory containing the .md files | |
# 3. Ensure that the script has execute permissions | |
# 4. Run the script | |
# | |
# By default this will keep the original .md file | |
FILES=*.md | |
for f in $FILES | |
do | |
# extension="${f##*.}" | |
filename="${f%.*}" | |
echo "Converting $f to $filename.rst" | |
`pandoc $f -t rst -o $filename.rst` | |
# uncomment this line to delete the source file. | |
# rm $f | |
done |
This comment has been minimized.
This comment has been minimized.
Thank you! This is very helpful. |
This comment has been minimized.
This comment has been minimized.
Thanks for this script! Very helpful |
This comment has been minimized.
This comment has been minimized.
How to save and run script ? |
This comment has been minimized.
This comment has been minimized.
muchos gracias |
This comment has been minimized.
This comment has been minimized.
I love github @hugorodgerbrown for president |
This comment has been minimized.
This comment has been minimized.
When I run this I get "open binary file does not exist". help? |
This comment has been minimized.
This comment has been minimized.
@rachrobts Probably spaces in your filenames. Try adding double-quotes: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Ta for letting me be super lazy. Using this to convert md for sphinx docs.