PowerShell/Scripts/convert-csv2txt.ps1

30 lines
660 B
PowerShell
Raw Normal View History

2020-12-29 15:14:21 +01:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
convert-csv2txt.ps1 [<csv-file>]
.DESCRIPTION
Converts the given CSV file into a text list
.EXAMPLE
PS> .\convert-csv2txt.ps1 salaries.csv
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
Author: Markus Fleschutz
License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-22 16:03:30 +01:00
2021-07-15 15:51:22 +02:00
param([string]$Path = "")
2020-12-22 16:03:30 +01:00
2021-02-18 20:17:55 +01:00
try {
2021-07-15 15:51:22 +02:00
if ($Path -eq "" ) { $Path = read-host "Enter path to CSV file" }
2020-12-22 16:03:30 +01:00
$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
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-22 16:03:30 +01:00
exit 1
}