2021-04-07 11:53:57 +02:00
|
|
|
#!/usr/bin/pwsh
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
2021-04-10 10:17:09 +02:00
|
|
|
.SYNTAX convert-csv2txt.ps1 [<csv-file>]
|
2021-03-22 20:10:18 +01:00
|
|
|
.DESCRIPTION converts the given CSV file into a text list
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
#>
|
2020-12-22 16:03:30 +01:00
|
|
|
|
2021-04-10 10:17:09 +02:00
|
|
|
param($Path = "")
|
|
|
|
if ($Path -eq "" ) { $Path = read-host "Enter path to CSV file" }
|
2020-12-22 16:03:30 +01:00
|
|
|
|
2021-02-18 20:17:55 +01:00
|
|
|
try {
|
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-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-22 16:03:30 +01:00
|
|
|
exit 1
|
|
|
|
}
|