Skip to content

Instantly share code, notes, and snippets.

@peterdalle
Created May 10, 2016 08:05
Show Gist options
  • Save peterdalle/bb6b8cf14ad597f1d3b792246b29083b to your computer and use it in GitHub Desktop.
Save peterdalle/bb6b8cf14ad597f1d3b792246b29083b to your computer and use it in GitHub Desktop.
Batch file to convert all DOCX files in the current directory to TXT files using Pandoc.
@echo off
REM Batch file to convert all DOCX files in the current directory to TXT files using Pandoc.
for %%f in (*.docx) do (
echo %%~nf
pandoc -f docx -t plain -o "%%~nf.txt" "%%~nf.docx"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment