<# .SYNOPSIS Prints a description of 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 "🔎 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 }