-
-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathwhat-is.ps1
More file actions
executable file
·41 lines (38 loc) · 1.16 KB
/
what-is.ps1
File metadata and controls
executable file
·41 lines (38 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<#
.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
}