mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-23 00:26:28 +00:00
15 lines
259 B
Markdown
15 lines
259 B
Markdown
---
|
|
tags:
|
|
- pandoc
|
|
- find
|
|
- xargs
|
|
---
|
|
|
|
# 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.
|