1784413672

This commit is contained in:
2026-07-18 16:27:51 -06:00
parent e6cbe71c5b
commit 79ad72ff11
5 changed files with 31 additions and 7 deletions
+9 -4
View File
@@ -1,6 +1,11 @@
param (
[Parameter(Mandatory=$true)]
[string]$infile
)
# param (
# [Parameter(Mandatory=$true)]
# [string]$infile
# )
if(!$args[0]) {
Write-Host "Usage: sha256sum <file path>"
exit 1
}
Invoke-Expression "$PSScriptRoot\winhash.ps1 $infile SHA256"