Created
December 22, 2012 01:06
-
-
Save heiths/4356903 to your computer and use it in GitHub Desktop.
bash script to decompile all .pyc files in a directory. Must have uncompyler installed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `ls *.pyc`; do echo $i | awk '{print("uncompyler.py "$1" > "$1)}' | sed 's/pyc/py/2' | /bin/sh; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment