File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -49,26 +49,26 @@ Invocation example for Ubuntu Linux and WSL (Windows Subsystem for Linux), assum
4949Python and ` pip ` are installed:
5050
5151``` bash
52- $ pip install cmd-call-graph
53- $ cmd-call-graph < your-file.cmd > your-file-call-graph.dot 2> log
52+ $ pip install cmd-call-graph
53+ $ cmd-call-graph < your-file.cmd > your-file-call-graph.dot 2> log
5454```
5555
5656The resulting ` dot ` file can be rendered with any ` dot ` renderer. Example with
5757graphviz (` VIEWER ` could be ` explorer.exe ` under Windows:
5858
5959``` bash
60- $ sudo apt install graphviz
61- $ dot -Tpng your-file-call-graph.dot > your-file-call-graph.png
62- $ $VIEWER your-file-call-graph.png
60+ $ sudo apt install graphviz
61+ $ dot -Tpng your-file-call-graph.dot > your-file-call-graph.png
62+ $ $VIEWER your-file-call-graph.png
6363```
6464
6565Example with PowerShell:
6666
6767``` powershell
68- PS C:\> choco install graphviz python3 pip
69- PS C:\> cmd-call-graph.exe -i your-file.cmd -o your-file-call-graph.dot
70- PS C:\> dot.exe -Tpng your-file-call-graph.dot -O
71- PS C:\> explorer.exe your-file-call-graph.dot.png
68+ PS C:\> choco install graphviz python3 pip
69+ PS C:\> cmd-call-graph.exe -i your-file.cmd -o your-file-call-graph.dot
70+ PS C:\> dot.exe -Tpng your-file-call-graph.dot -O
71+ PS C:\> explorer.exe your-file-call-graph.dot.png
7272```
7373
7474## Types of entities represented
You can’t perform that action at this time.
0 commit comments