PowerShell/Scripts/what-is.ps1

34 lines
937 B
PowerShell
Raw Normal View History

2021-05-19 07:51:30 +02:00
<#
2021-04-27 15:54:52 +02:00
.SYNTAX what-is.ps1 [<abbreviation>]
.DESCRIPTION prints a description of the given abbreviation
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Abbreviation = "")
if ($Abbreviation -eq "" ) { $Abbreviation = read-host "Enter the abbreviation" }
try {
2021-04-29 20:19:07 +02:00
write-progress "Searching ..."
2021-05-20 11:30:01 +02:00
$FoundOne = $false
$Files = (get-childItem "$PSScriptRoot/../Data/Abbr/*" -attributes !Directory)
2021-04-29 20:19:07 +02:00
2021-05-20 11:30:01 +02:00
foreach ($File in $Files) {
$Table = import-csv "$File"
foreach($Row in $Table) {
2021-05-25 17:51:46 +02:00
if ($Row.Abbreviation -eq $Abbreviation) {
2021-05-20 11:30:01 +02:00
$Filename = (get-item "$File").Name
2021-05-25 19:11:55 +02:00
"$($Row.Abbreviation) = $($Row.Definition) (in $Filename)"
2021-05-20 11:30:01 +02:00
$FoundOne = $true
}
2021-04-27 15:54:52 +02:00
}
}
2021-05-20 11:30:01 +02:00
if ($FoundOne -eq $false) { "Sorry, no entry for $Abbreviation found" }
2021-04-27 15:54:52 +02:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-04-27 15:54:52 +02:00
exit 1
}