mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 04:24:01 +01:00
Update the CSV files
This commit is contained in:
parent
2ee093a8dd
commit
1ed84751d1
@ -1,4 +1,4 @@
|
||||
Abbr,Term,
|
||||
ABBR,TERM
|
||||
UGL,Union Glacier Blue-Ice Runway,
|
||||
SXW,Sauren,
|
||||
NDV,USN Heliport,
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term,Country
|
||||
ABBR,TERM
|
||||
00A,Total Rf Heliport (USA)
|
||||
00AA,Aero B Ranch Airport (USA)
|
||||
00AK,Lowell Field (USA)
|
||||
|
Can't render this file because it is too large.
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
A000,"Cholera due to Vibrio cholerae 01, biovar cholerae"
|
||||
A001,"Cholera due to Vibrio cholerae 01, biovar eltor"
|
||||
A009,"Cholera, unspecified"
|
||||
|
Can't render this file because it is too large.
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
AF,Afghanistan
|
||||
AX,Åland Islands
|
||||
AL,Albania
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
AED,United Arab Emirates dirham
|
||||
AFN,Afghan afghani
|
||||
ALL,Albanian lek
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
aa,Afar
|
||||
ab,Abkhazian
|
||||
ae,Avestan
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
quetta,"10^30"
|
||||
Q,"10^30"
|
||||
ronna,"10^27"
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
21CSLC,21st Century Space Launch Complex
|
||||
4LGSF,Four-Laser Guide Star Facility
|
||||
4MOST,4-metre Multi-Object Spectroscopic Telescope (Proposed new spectroscopic instrument for VISTA)
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
3P,"Perceive, Process, Perform"
|
||||
5P,"Plan, Plane, Pilot, Passengers, Programming"
|
||||
A/A,Air to air TACAN function
|
||||
|
|
@ -1,3 +1,3 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
Leo,an American Quarter Horse
|
||||
Leo,"Leonberger, a breed of dog"
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
A,Atom
|
||||
a,atto prefix (10-18)
|
||||
AA,Acetic Acid
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
.7z,Common filename extension for archive files in 7z format
|
||||
.bat,Common filename extension for Batch script files
|
||||
.bz2,Common filename extension for archive files in bzip2 format
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
btl,Bottle
|
||||
c,Cup
|
||||
C,Cups
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
0D,obvious deed
|
||||
1AM,Air Mechanic 1st Class
|
||||
1D,One-Dimensional
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
0DG,Zero Degrees Parallel
|
||||
AAGIS,Ann Arbor Geographic Information System
|
||||
AGS,Applied Geographic Solutions
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
AC,Axiom of Choice, or set of absolutely continuous functions.
|
||||
a.c.,absolutely continuous.
|
||||
acrd,inverse chord function.
|
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
PR,per the rectum
|
||||
pr,per the rectum
|
||||
PT,prothrombin time
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
AA,Air-to-Air
|
||||
AA,Anti-Aircraft
|
||||
AAA,Anti-Aircraft Artillery
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
8va,Octave up
|
||||
ABBA,A swedish pop band consisting of Agnetha, Bjorn, Benny, and Anni-Frid
|
||||
ACDC,An australian rock band
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
3M,The Minnesota Mining and Manufacturing Company
|
||||
A&W,Allen and Wright (founders Roy Allen and Frank Wright)
|
||||
AATF,"American Association of Teachers of French, or: African Agricultural Technology Foundation"
|
||||
|
|
@ -1,4 +1,4 @@
|
||||
Abbr,Term
|
||||
ABBR,TERM
|
||||
AAAA,Asian Amateur Athletics Association
|
||||
AFC,American Football Conference
|
||||
DNF,Did Not Finish (Race)
|
||||
|
|
@ -23,9 +23,9 @@ try {
|
||||
foreach ($File in $Files) {
|
||||
$Table = Import-CSV "$File"
|
||||
foreach($Row in $Table) {
|
||||
if ($Row.Abbr -eq $abbr) {
|
||||
if ($Row.ABBR -eq $abbr) {
|
||||
$Basename = (Get-Item "$File").Basename -Replace "_"," "
|
||||
"💡 In $Basename $($Row.Abbr) may refer to $($Row.Term)."
|
||||
"💡 In $Basename $($Row.ABBR) may refer to $($Row.TERM)."
|
||||
$Missing = $false
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user