-
-
Save udkl/773788d46c4278486e8b81a681cc47ab to your computer and use it in GitHub Desktop.
sh in the terminal - looping through all files in the current dir and running a command
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
for i in *.html ; do echo "$i" && pandoc -s ./$i -o ./output/$i.md ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment