mirror of
https://github.com/Cute-Dress/Dress.git
synced 2024-11-24 06:05:04 +08:00
2 lines
193 B
PowerShell
2 lines
193 B
PowerShell
|
Get-FileHash * -Algorithm SHA512 | Select-Object -Property @{name = 'FileName'; expression = { Split-Path $_.Path -leaf } }, @{name = 'Hash'; expression = { $_.Hash.ToLower() } } | Format-List
|