mirror of
https://github.com/blacktop/ipsw.git
synced 2026-05-08 12:22:26 +00:00
10 lines
231 B
Bash
Executable File
10 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
files=($(find -f ./internal/commands/ida/dscu/data -- -type f -name '*.py'))
|
|
|
|
for item in ${files[*]}; do
|
|
printf "Minimizing Py: %s\n" $item
|
|
gzip -cn $item >"$(dirname $item)/$(basename -- $item .py).gz"
|
|
done
|