The 'what-is.ps1' Script
May 17, 2026 ยท View on GitHub
This PowerShell script queries the meaning of the given term/abbreviation/etc. and prints it.
Parameters
PS> ./what-is.ps1 [[-term] <String>] [<CommonParameters>]
-term <String>
Specifies the term to query
Required? false
Position? 1
Default value
Accept pipeline input? false
Aliases
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
Example
PS> ./what-is VTOL
๐ก VTOL in aviation refers to: Vertical Take-Off and Landing
Notes
Author: Markus Fleschutz | License: CC0
Related Links
https://github.com/fleschutz/PowerShell
Script Content
<#
.SYNOPSIS
Explains a term/abbreviation/etc.
.DESCRIPTION
This PowerShell script queries the meaning of the given term/abbreviation/etc. and prints it.
.PARAMETER term
Specifies the term to query
.EXAMPLE
PS> ./what-is VTOL
๐ก VTOL in aviation refers to: Vertical Take-Off and Landing
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$term = "")
try {
if ($term -eq "" ) { $term = Read-Host "Enter the term to query" }
$files = Get-ChildItem "$PSScriptRoot/data/dicts/*.csv"
$basename = ""
foreach($file in $files) {
$table = Import-CSV "$file"
foreach($row in $table) {
if ($row.TERM -ne $term) { continue }
$basename = (Get-Item "$file").Basename -Replace "_"," "
"๐ก $($row.TERM) in $basename refers to: $($row.MEANING)"
}
}
if ($basename -eq "") {
Write-Host "๐คทโ Sorry, I don't know '$term'. Let's search for it: " -noNewline
Write-Host "https://qwant.com/?q=what+is+$term" -foregroundColor blue -noNewline
Write-Host " (Ctrl+Click to open link)"
}
exit 0 # success
} catch {
"โ ๏ธ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}
(page generated by convert-ps2md.ps1 as of 05/17/2026 11:51:12)