python37-decompilers/entrypoint

9 lines
193 B
Plaintext
Raw Normal View History

2023-04-22 16:32:44 +00:00
#!/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