mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-27 18:33:19 +01:00
30 lines
723 B
PowerShell
Executable File
30 lines
723 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
<#
|
|
.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
|
|
#>
|
|
|
|
param([string]$Pattern, [string]$Path)
|
|
|
|
Set-StrictMode -Version Latest
|
|
|
|
try {
|
|
if ($Pattern -eq "" ) {
|
|
$Pattern = read-host "Enter search pattern"
|
|
}
|
|
if ($Path -eq "" ) {
|
|
$Path = read-host "Enter path to files"
|
|
}
|
|
|
|
$List = Select-String -Path $Path -Pattern "$Pattern"
|
|
foreach ($Item in $List) {
|
|
write-output "$($Item.Path) @$($Item.LineNumber)`t$($Item.Line)"
|
|
}
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|