Files
OldThink/Tools/generate_hashes.ps1

6 lines
133 B
PowerShell
Raw Normal View History

2020-02-07 20:42:19 +01:00
#!/usr/bin/env pwsh
Get-ChildItem release/*.zip | Get-FileHash -Algorithm S | ForEach-Object {
$_.Hash > "$($_.Path).sha256";
}