Dress/L/LY/hash-all.ps1
CuteDress 26049bb44b
some cleanups
整理文件夹,按首字母分类
2024-02-07 13:33:29 +08:00

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