Created
December 31, 2018 15:05
-
-
Save ihfazhillah/a98e66aa0cfc6670371566bde9701050 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# pip install uncompyle6 | |
for item in $(tree --noreport -if -P '*.pyc'); do | |
if [[ -f $item ]]; then | |
folder=$(dirname $item) | |
uncompyle6 -o $folder $item | |
#statements | |
fi | |
#statements | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment