Skip to content

Commit a983acf

Browse files
authored
Fix indentation of invocation examples
1 parent 417a799 commit a983acf

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,26 @@ Invocation example for Ubuntu Linux and WSL (Windows Subsystem for Linux), assum
4949
Python 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

5656
The resulting `dot` file can be rendered with any `dot` renderer. Example with
5757
graphviz (`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

6565
Example 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

0 commit comments

Comments
 (0)