Fix quoting

This commit is contained in:
Tim Schubert 2020-12-31 12:11:31 +01:00
parent f35f8e137c
commit 87936f07af
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

View file

@ -1,3 +1,3 @@
#!/bin/sh
find . -iname "*.md" -type f -exec sh -c 'pandoc -s -f commonmark -t html --template=src/template.html -o "''${0%.md}.html" "''${0}"' {} \;
find . -iname "*.md" -type f -exec sh -c 'pandoc -s -f commonmark -t html --template=src/template.html -o "${0%.md}.html" "${0}"' {} \;