Skip to content

Commit 0669107

Browse files
StartAutomatingStartAutomating
authored andcommitted
feat: Irregular Dockerfile ( Fixes #206 )
1 parent 87bef4d commit 0669107

1 file changed

Lines changed: 4 additions & 72 deletions

File tree

docs/Import-RegEx.md

Lines changed: 4 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,157 +1,89 @@
11
Import-RegEx
22
------------
33

4-
5-
6-
74
### Synopsis
85
Imports Regular Expressions
96

10-
11-
127
---
138

14-
159
### Description
1610

1711
Imports saved Regular Expressions.
1812

19-
20-
2113
---
2214

23-
2415
### Related Links
2516
* [Use-RegEx](Use-RegEx.md)
2617

27-
28-
2918
* [New-RegEx](New-RegEx.md)
3019

31-
32-
33-
34-
3520
---
3621

37-
3822
### Examples
39-
#### EXAMPLE 1
23+
> EXAMPLE 1
24+
4025
```PowerShell
4126
Import-RegEx # Imports Regex from Irregular and the current directory.
4227
```
28+
> EXAMPLE 2
4329
44-
#### EXAMPLE 2
4530
```PowerShell
4631
Import-Regex -FromModule AnotherModule # Imports Regular Expressions stored in another module.
4732
```
33+
> EXAMPLE 3
4834
49-
#### EXAMPLE 3
5035
```PowerShell
5136
Import-RegEx -Name NextWord
5237
```
5338

54-
55-
5639
---
5740

58-
5941
### Parameters
6042
#### **FilePath**
61-
6243
The path to one or more files or folders containing regular expressions.
6344
Files should be named $Name.regex.txt or $Name.regex.ps1
6445

65-
66-
67-
68-
69-
7046
|Type |Required|Position|PipelineInput |Aliases |
7147
|------------|--------|--------|---------------------|--------|
7248
|`[String[]]`|false |1 |true (ByPropertyName)|Fullname|
7349

74-
75-
7650
#### **FromModule**
77-
7851
If provided, will get regular expressions from any number of already imported modules.
7952

80-
81-
82-
83-
84-
8553
|Type |Required|Position|PipelineInput|
8654
|------------|--------|--------|-------------|
8755
|`[String[]]`|false |2 |false |
8856

89-
90-
9157
#### **Pattern**
92-
9358
One or more direct patterns to import
9459

95-
96-
97-
98-
99-
10060
|Type |Required|Position|PipelineInput |
10161
|------------|--------|--------|---------------------|
10262
|`[String[]]`|false |3 |true (ByPropertyName)|
10363

104-
105-
10664
#### **Name**
107-
10865
The Name of the Regular Expression.
10966

110-
111-
112-
113-
114-
11567
|Type |Required|Position|PipelineInput |
11668
|------------|--------|--------|---------------------|
11769
|`[String[]]`|false |4 |true (ByPropertyName)|
11870

119-
120-
12171
#### **PassThru**
122-
12372
If set, will output the imported regular expressions.
12473

125-
126-
127-
128-
129-
13074
|Type |Required|Position|PipelineInput|
13175
|----------|--------|--------|-------------|
13276
|`[Switch]`|false |named |false |
13377

134-
135-
136-
137-
13878
---
13979

140-
14180
### Outputs
14281
* [Nullable](https://learn.microsoft.com/en-us/dotnet/api/System.Nullable)
14382

144-
14583
* [Management.Automation.PSObject](https://learn.microsoft.com/en-us/dotnet/api/System.Management.Automation.PSObject)
14684

147-
148-
149-
150-
151-
15285
---
15386

154-
15587
### Syntax
15688
```PowerShell
15789
Import-RegEx [[-FilePath] <String[]>] [[-FromModule] <String[]>] [[-Pattern] <String[]>] [[-Name] <String[]>] [-PassThru] [<CommonParameters>]

0 commit comments

Comments
 (0)