aboutsummaryrefslogtreecommitdiff
path: root/works/life/algorithm-contest-2/pack.ps1
blob: 6d77d8130dfa6d3c423c1008e2cfd7a11c642053 (plain)
1
2
3
4
5
6
foreach ($problem in 1..5) {
    Push-Location "output/$problem"
    7z a -tzip "$problem.zip" *
    Move-Item "$problem.zip" ..
    Pop-Location
}