Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unsupported CLI usage from tooling-config-visualization.md #362

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/docs/tooling/tooling-config-visualization.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ Alternatively, you can generate [a DOT graph](https://graphviz.org/doc/info/lang
2. Use `dot -Tpdf -O config.dot` to layout the graph in `config.dot`, generating a `config.pdf`.
This program is part of graphviz and there are many more output formats possible.

These commands support piping, so you can also execute:
Combine the two commands with a pipe to generate, for example, a PDF file (PNG/SVG are also possible):

```bash
cat precice-config.xml | precice-config-visualizer | dot -Tpdf > config.pdf
precice-config-visualizer precice-config.xml | dot -Tpdf > graph.pdf
```

{% tip %}
Expand Down
Loading