PowerShell/Scripts/what-is.ps1

43 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-10-16 16:50:10 +02:00
Prints a description of an abbreviation
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2021-10-16 16:50:10 +02:00
This script prints a description of the given abbreviation.
.PARAMETER abbreviation
Specifies the appreviation to look for
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-25 19:43:22 +02:00
PS> ./what-is CIA
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2021-04-27 15:54:52 +02:00
#>
2021-08-29 17:50:03 +02:00
param([string]$abbreviation = "")
2021-04-27 15:54:52 +02:00
try {
2021-08-29 17:50:03 +02:00
if ($abbreviation -eq "" ) { $abbreviation = read-host "Enter the abbreviation" }
2021-07-15 15:51:22 +02:00
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-08-29 17:50:03 +02:00
if ($Row.Abbreviation -eq $abbreviation) {
2021-05-25 19:42:11 +02:00
$Basename = (get-item "$File").Basename
"$($Row.Abbreviation) = $($Row.Definition) in $Basename"
2021-05-20 11:30:01 +02:00
$FoundOne = $true
}
2021-04-27 15:54:52 +02:00
}
}
2021-08-29 17:50:03 +02:00
if ($FoundOne -eq $false) { "Sorry, no entry for $abbreviation found" }
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-04-27 15:54:52 +02:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-04-27 15:54:52 +02:00
exit 1
}