mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-24 21:16:54 +01:00
Improve what-is.ps1
This commit is contained in:
parent
48039f761b
commit
a43b74e238
BIN
Data/Abbr/.computer.csv.swp
Normal file
BIN
Data/Abbr/.computer.csv.swp
Normal file
Binary file not shown.
@ -1,6 +1,32 @@
|
||||
Abbreviation,Definition
|
||||
ACID,"Atomicity, Consistency, Isolation, Durability"
|
||||
ACL,Access Control List
|
||||
ADC,Analog-to-Digital Converter
|
||||
ADF,Automatic Document Feeder
|
||||
ADSL,Asymmetric Digital Subscriber Line
|
||||
AFP,Apple Filing Protocol
|
||||
AGP,Accelerated Graphics Port
|
||||
AIFF,Audio Interchange File Format
|
||||
ALU,Arithmetic Logic Unit
|
||||
ANSI,American National Standards Institute
|
||||
API,Application Programming Interface
|
||||
APU,Accelerated Processing Unit
|
||||
ARP,Address Resolution Protocol
|
||||
ASCII,American Standard Code for Information Interchange
|
||||
ASP,Application Service Provider
|
||||
ATM,Asynchronous Transfer Mode
|
||||
AVR,Audio/Video Receiver
|
||||
Bash,Bourne-Again Shell
|
||||
BASIC,Beginner's All-purpose Symbolic Instruction Code
|
||||
BCC,Blind Carbon Copy
|
||||
BIOS,Basic Input/Output System
|
||||
BLE,Bluetooth Low Energy
|
||||
Blob,Binary Large Object
|
||||
BMP,Bitmap
|
||||
BSOD,Blue Screen of Death
|
||||
CAD,Computer-Aided Design
|
||||
CAN,Campus Area Network
|
||||
CD,Compact Disc
|
||||
CPU,Central Processing Unit
|
||||
CSV,Comma Separated Values (file format)
|
||||
DDL,Data Definition Language
|
||||
|
|
@ -104,7 +104,6 @@ ACE- Air Combat Emulator (computer game),Allied Command Europe,Armored Combat Ea
|
||||
ACES- Aerolíneas Centrales de Colombia (Spanish, "Central Colombian Airlines"),Auxiliary Campus Enterprises and Services of Alfred State College
|
||||
ACF- Administration for Children and Families,American Car and Foundry,American Culinary Federation
|
||||
ACHT, Average Call Hold Time
|
||||
ACID, Atomicity, Consistency, Isolation, and Durability (in databases)
|
||||
ACINT, Acoustic Intelligence
|
||||
ACK, Acknowledge (telecommunications; cf. NAK)
|
||||
ACL- Access Control List,Anterior cruciate ligament; the initialism can also refer to an injury to this ligament.,Atlantic Coast Line Railroad
|
Can't render this file because it contains an unexpected character in line 32 and column 89.
|
@ -18,8 +18,8 @@ try {
|
||||
$Table = import-csv "$File"
|
||||
foreach($Row in $Table) {
|
||||
if ($Row.Abbreviation -eq $Abbreviation) {
|
||||
$Filename = (get-item "$File").Name
|
||||
" → $($Row.Abbreviation) = $($Row.Definition) (in $Filename)"
|
||||
$Basename = (get-item "$File").Basename
|
||||
" → $($Row.Abbreviation) = $($Row.Definition) in $Basename"
|
||||
$FoundOne = $true
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user