This commit is contained in:
2023-09-14 08:17:18 +08:00
parent 36cbe54993
commit 7fe37b52eb
4 changed files with 28 additions and 0 deletions

9
misc/easy_unpack/pack.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/zsh
7z a -tzip unpack.zip flag.txt
start=1
end=10000
for ((i = start; i <= end; i++)); do
7z a -tzip pack.zip unpack.zip
mv pack.zip unpack.zip
done