mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
39 lines
957 B
PowerShell
Executable File
39 lines
957 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Describes an abbreviation
|
|
.DESCRIPTION
|
|
This PowerShell script queries and prints a description of the given abbreviation.
|
|
.PARAMETER abbr
|
|
Specifies the abbreviation to look for
|
|
.EXAMPLE
|
|
PS> ./what-is IAS
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$abbr = "")
|
|
|
|
try {
|
|
if ($abbr -eq "" ) { $abbr = Read-Host "Enter the abbreviation" }
|
|
|
|
$Missing = $true
|
|
$Files = (Get-ChildItem "$PSScriptRoot/../Data/Abbr/*.csv")
|
|
foreach ($File in $Files) {
|
|
$Table = Import-CSV "$File"
|
|
foreach($Row in $Table) {
|
|
if ($Row.ABBR -eq $abbr) {
|
|
$Basename = (Get-Item "$File").Basename -Replace "_"," "
|
|
"💡 In $Basename $($Row.ABBR) may refer to $($Row.TERM)."
|
|
$Missing = $false
|
|
}
|
|
}
|
|
}
|
|
if ($Missing) { "Sorry, '$abbr' is missing in the database." }
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|