Pandoc
Pandoc is a universal document converter. With it, you can convert between various flavors of Markdown, Textile, HTML, LaTeX and Word docx.
https://pandoc.org/MANUAL.html
Install
brew install pandoc
Examples
Convert Markdown to Textile
pandoc --from markdown --to textile FileFrom.md -o FileTo.txt
Convert Word Docx to Markdown
pandoc -f docx -t markdown foo.docx -o foo.md
Convert Markdown to Word Docx
pandoc -f markdown -t docx foo.md -o foo.docx
Batch convert a folder with pandoc
for i in *.docx; do echo "$i" && pandoc -f docx -t markdown $i -o $i.md; done