some cleanups

整理文件夹,按首字母分类
This commit is contained in:
CuteDress
2024-02-07 12:16:20 +08:00
parent 1c7a79f719
commit 26049bb44b
2679 changed files with 470 additions and 509 deletions

1
L/LY/hash-all.ps1 Normal file
View File

@ -0,0 +1 @@
Get-FileHash * -Algorithm SHA512 | Select-Object -Property @{name = 'FileName'; expression = { Split-Path $_.Path -leaf } }, @{name = 'Hash'; expression = { $_.Hash.ToLower() } } | Format-List