PowerShell/Scripts/list-os-releases.ps1

29 lines
838 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-01-01 19:27:03 +01:00
<#
2021-03-22 20:10:18 +01:00
.SYNTAX ./list-os-releases.ps1
.DESCRIPTION lists OS releases and download URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-01-01 19:27:03 +01:00
#>
try {
2021-03-13 12:32:24 +01:00
write-progress "Reading OS_IPFS_hashes.csv ..."
$PathToRepo = "$PSScriptRoot/.."
2021-01-01 19:27:03 +01:00
$PathToCsvFile = "$PathToRepo/Data/os-release.csv"
invoke-webRequest -URI "https://fleschutz.droppages.com/downloads/OS_IPFS_hashes.csv" -outFile "$PathToCsvFile"
2021-03-13 12:32:24 +01:00
2021-01-01 19:27:03 +01:00
$Table = import-csv "$PathToCsvFile"
remove-item -path "$PathToCsvFile"
2021-03-13 12:32:24 +01:00
write-output "Operating System Releases"
write-output "========================="
2021-01-01 19:27:03 +01:00
foreach ($Row in $Table) {
2021-03-13 12:32:24 +01:00
write-output "* $($Row.Path.substring(3)) -> ipfs://$($Row.IPFS)"
2021-01-01 19:27:03 +01:00
}
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-01-01 19:27:03 +01:00
exit 1
}