1 Star 0 Fork 14

百转回魂/STranslate

forked from ZGGSONG/STranslate 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
7z.ps1 749 Bytes
一键复制 编辑 原始数据 按行查看 历史
# PowerShell版本压缩文件并计算SHA256哈希值
param(
[string]$version
)
if ([string]::IsNullOrEmpty($version)) {
Write-Error "Version argument is required."
exit
}
# 使用7-Zip创建ZIP文件
& 7z a -tzip "STranslate_${version}_win-x64.zip" ./publish/*
# 使用7-Zip创建7z文件
& 7z a -t7z "STranslate_${version}_win-x64_7z.7z" ./publish/*
# 使用7-Zip计算SHA256哈希值
& 7z h -scrcsha256 "STranslate_${version}_win-x64.zip" "STranslate_${version}_win-x64_7z.7z" | Out-File "STranslate_${version}_win-x64_sha256.txt"
Write-Host ""
Write-Host "========================================"
Write-Host "Compress the file and calculate the SHA256 hash successfully."
Write-Host "========================================"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/imiyu/STranslate.git
git@gitee.com:imiyu/STranslate.git
imiyu
STranslate
STranslate
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385