mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
34 lines
874 B
PowerShell
Executable File
34 lines
874 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
list-os-releases.ps1
|
|
.DESCRIPTION
|
|
Lists OS releases and download URL
|
|
.EXAMPLE
|
|
PS> ./list-os-releases
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
try {
|
|
write-progress "Reading OS_IPFS_hashes.csv ..."
|
|
|
|
$PathToRepo = "$PSScriptRoot/.."
|
|
$PathToCsvFile = "$PathToRepo/Data/os-release.csv"
|
|
invoke-webRequest -URI "https://fleschutz.droppages.com/downloads/OS_IPFS_hashes.csv" -outFile "$PathToCsvFile"
|
|
|
|
$Table = import-csv "$PathToCsvFile"
|
|
remove-item -path "$PathToCsvFile"
|
|
|
|
write-output "Operating System Releases"
|
|
write-output "========================="
|
|
foreach ($Row in $Table) {
|
|
write-output "* $($Row.Path.substring(3)) -> ipfs://$($Row.IPFS)"
|
|
}
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|