mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-22 16:16:31 +00:00
8 lines
214 B
Markdown
8 lines
214 B
Markdown
|
# 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.
|