-
-
Notifications
You must be signed in to change notification settings - Fork 545
Expand file tree
/
Copy pathconvert-csv2txt.ps1
More file actions
executable file
·30 lines (26 loc) · 752 Bytes
/
convert-csv2txt.ps1
File metadata and controls
executable file
·30 lines (26 loc) · 752 Bytes
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
<#
.SYNOPSIS
Converts a .CSV file into a text file
.DESCRIPTION
This PowerShell script converts a .CSV file into a text file and prints it.
.PARAMETER Path
Specifies the path to the .CSV file
.EXAMPLE
PS> ./convert-csv2txt salaries.csv
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$Path = "")
try {
if ($Path -eq "" ) { $Path = read-host "Enter path to CSV file" }
$Table = Import-CSV -path "$Path" -header A,B,C,D,E,F,G,H
foreach($Row in $Table) {
write-output "* $($Row.A) $($Row.B) $($Row.C) $($Row.D) $($Row.E) $($Row.F) $($Row.G) $($Row.H)"
}
exit 0 # success
} catch {
"⚠️ ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
exit 1
}