PowerShell/Scripts/search-files.ps1

37 lines
951 B
PowerShell
Raw Normal View History

2021-02-09 19:30:45 +01:00
#!/bin/powershell
2020-12-29 15:14:21 +01:00
<#
.SYNTAX ./search-files.ps1 [<pattern>] [<path>]
.DESCRIPTION searches the given pattern in the given files
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
2020-12-29 12:03:53 +01:00
2021-01-02 11:08:59 +01:00
param([string]$Pattern = "", [string]$Path = "")
2020-12-29 12:03:53 +01:00
2021-01-02 14:02:16 +01:00
function ListScripts { param([string]$Pattern, [string]$Path)
$List = Select-String -Path $Path -Pattern "$Pattern"
foreach ($Item in $List) {
New-Object PSObject -Property @{
'Path' = "$($Item.Path)"
'Line' = "$($Item.LineNumber)"
'Text' = "$($Item.Line)"
}
}
write-output "(pattern found at $($List.Count) locations)"
}
2020-12-29 12:03:53 +01:00
try {
if ($Pattern -eq "" ) {
$Pattern = read-host "Enter search pattern"
}
if ($Path -eq "" ) {
$Path = read-host "Enter path to files"
}
2021-01-02 14:02:16 +01:00
ListScripts $Pattern $Path | format-table -property Path,Line,Text
2020-12-29 12:03:53 +01:00
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}