We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8e150 commit 3e4b0eeCopy full SHA for 3e4b0ee
README.md
@@ -13,20 +13,24 @@ to stdout, outputting logs and errors to stderr.
13
14
## Output Examples
15
16
-Here is an example CMD script:
17
-
18
- @echo off
19
- call :foo
20
- goto :eof
21
- :bar
22
- echo "in bar"
23
- call :baz
24
25
- :baz
26
- echo "in baz"
27
- :foo
28
- echo "In foo"
29
- goto :bar
+Given the following CMD script:
+
+```
+@echo off
+call :foo
+goto :eof
+:bar
+ echo "in bar"
+ call :baz
+:baz
+ echo "in baz"
+ call powershell.exe Write-Host "Hello World from PowerShell"
30
+:foo
31
+ echo "In foo"
32
+ goto :bar
33
34
35
This script would generate the following graph:
36
0 commit comments