File tree Expand file tree Collapse file tree 1 file changed +31
-7
lines changed Expand file tree Collapse file tree 1 file changed +31
-7
lines changed Original file line number Diff line number Diff line change 1
1
Until
2
2
-----
3
+
4
+
5
+
6
+
3
7
### Synopsis
4
8
until keyword
5
9
10
+
11
+
6
12
---
13
+
14
+
7
15
### Description
8
16
9
17
The until keyword simplifies event loops.
10
18
11
19
until will always run at least once, and will run until a condition is true.
12
20
21
+
22
+
13
23
---
24
+
25
+
14
26
### Examples
15
27
#### EXAMPLE 1
16
28
``` PowerShell
@@ -72,26 +84,38 @@ Invoke-PipeScript {
72
84
}
73
85
```
74
86
87
+
88
+
75
89
---
90
+
91
+
76
92
### Parameters
77
93
#### ** CommandAst**
78
94
79
- > ** Type** : ``` [CommandAst] ```
80
95
81
- > ** Required** : true
82
96
83
- > ** Position** : named
84
97
85
- > ** PipelineInput** : true (ByValue)
98
+ | Type | Required| Position| PipelineInput |
99
+ | --------------| --------| --------| --------------|
100
+ | ` [CommandAst] ` | true | named | true (ByValue)|
101
+
102
+
86
103
87
104
88
105
89
106
---
107
+
108
+
109
+ ### Notes
110
+ until will become a ``` do {} while () ``` statement in PowerShell.
111
+
112
+
113
+
114
+ ---
115
+
116
+
90
117
### Syntax
91
118
``` PowerShell
92
119
Until -CommandAst <CommandAst> [<CommonParameters>]
93
120
```
94
- ---
95
- ### Notes
96
- until will become a ``` do {} while () ``` statement in PowerShell.
97
121
You can’t perform that action at this time.
0 commit comments