python37-decompilers/entrypoint
2023-04-22 09:32:44 -07:00

9 lines
193 B
Plaintext
Executable File

#!/bin/busybox sh
# shellcheck disable=SC3060
for f in "$@"; do
decompyle3 "$f" > "${f//.pyc}.decompyle3.py"
pycdc "$f" > "${f//.pyc}.pycdc.py"
unpyc3 "$f" > "${f//.pyc}.unpyc3.py"
done