1 Star 0 Fork 54

adminpomme/kasini3000

forked from chuanjiao10/kasini3000 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bf备份nodelist.ps1 740 Bytes
一键复制 编辑 原始数据 按行查看 历史
#建议保存编码为:bom头 + utf8
if (Test-Path -LiteralPath $global:备份目录)
{
$今天日期 = Get-Date -Format 'yyyyMMdd'
$备份库目录加日期 = "${global:备份目录}/${今天日期}"
if (Test-Path -LiteralPath $备份库目录加日期)
{
}
else
{
mkdir $备份库目录加日期
}
if ( ($IsWindows -eq $True) -or ($PSVersionTable.psversion.major -lt 6) ) #win
{
Copy-Item -Path "c:\ProgramData\kasini3000\nodelist*.*" -Destination $备份库目录加日期
}
if ($IsLinux -eq $True)
{
Copy-Item -Path "/etc/kasini3000/nodelist*.*" -Destination $备份库目录加日期
}
Write-Verbose 'nodelist 文件备份完毕'
}
else
{
Write-Error "错误,找不到备份库目录"
exit 3
}
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PowerShell
1
https://gitee.com/gappwoldfree/kasini3000.git
git@gitee.com:gappwoldfree/kasini3000.git
gappwoldfree
kasini3000
kasini3000
master

搜索帮助