rdocx-cli 0.5.0

CLI tool for inspecting, converting, and manipulating DOCX files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rdocx-cli

`rdocx-cli` is the command-line interface for inspecting, extracting,
converting, comparing, replacing, validating, and rendering DOCX files. Use
the [`rdocx`](https://docs.rs/rdocx) library when these operations need to run
inside a Rust application.

```sh
cargo install rdocx-cli --version '^0.5'

rdocx inspect report.docx
rdocx text report.docx
rdocx convert report.docx --to pdf -o report.pdf
rdocx validate report.docx
rdocx render report.docx --page 0 -o rendered
```

Run `rdocx --help` or `rdocx <command> --help` for the complete option set.