-
Notifications
You must be signed in to change notification settings - Fork 4
/
Find-String.psd1
35 lines (30 loc) · 2.33 KB
/
Find-String.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@{
RootModule = 'Find-String.psm1'
ModuleVersion = '1.7.2'
GUID = '1e7a8acc-cf37-4885-a882-101ead5c4510'
Author = 'David Mohundro'
CompanyName = ''
Copyright = '(c) 2017 David Mohundro. All rights reserved.'
Description = 'Find-String is a PowerShell script whose purpose is to emulate grep and/or ack.'
PowerShellVersion = '2.0'
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
PrivateData = @{
PSData = @{
Tags = @(
'PSEdition_Desktop',
'PSEdition_Core',
'Linux',
'Mac',
'grep',
'ack'
)
LicenseUri = 'https://github.com/drmohundro/Find-String/blob/master/LICENSE'
ProjectUri = 'https://github.com/drmohundro/Find-String'
ReleaseNotes = 'https://github.com/drmohundro/Find-String/blob/master/CHANGELOG.md'
}
}
HelpInfoURI = 'https://github.com/drmohundro/Find-String/blob/master/README.md'
}