[split-upload 4/6] f2fd4fa backup via proxy

This commit is contained in:
Simon
2026-08-11 14:17:15 +08:00
parent 8ef4be0fa0
commit 90ff78563a
74 changed files with 247663 additions and 65 deletions
+8
View File
@@ -0,0 +1,8 @@
$b = [System.IO.File]::ReadAllText('fix-prod.b64').Trim()
$n = $b.Length
$half = [int]($n / 2)
$s1 = $b.Substring(0, $half)
$s2 = $b.Substring($half)
[System.IO.File]::WriteAllText('fix-prod.s1', $s1)
[System.IO.File]::WriteAllText('fix-prod.s2', $s2)
Write-Host "Total=$n seg1=$($s1.Length) seg2=$($s2.Length)"