Files
memoir/pages/cli/convert-documents.md
2023-03-07 21:13:09 +01:00

8 lines
214 B
Markdown
Executable File

# Convert documents
```bash
find . -name "*.odt" | xargs -I % pandoc % -o %.md
```
You can add the `-p` flag to `xargs` to confirm before executing, useful for testing if what your are doing is actually correct.