Skip to content

Instantly share code, notes, and snippets.

@Ramona2020
Last active December 10, 2015 21:19
Show Gist options
  • Save Ramona2020/c37ea14f5d8d7f7fe1e2 to your computer and use it in GitHub Desktop.
Save Ramona2020/c37ea14f5d8d7f7fe1e2 to your computer and use it in GitHub Desktop.
Converting files in Windows folder
[http://www.windows-commandline.com/rename-file-extensions-bulk/](http://www.windows-commandline.com/rename-file-extensions-bulk/)
rename *.log *.txt
Convert batch of files in Pandoc
for /r "startfolder" %i in (*.htm *.html) do pandoc -f html -t markdown "%~fi" -o "%~dpni.txt"
Batch delete files from Windows folder
1. Navigate to folder and use command line:
del /S *.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment