Skip to content

Instantly share code, notes, and snippets.

@ihfazhillah
Created December 31, 2018 15:05
Show Gist options
  • Save ihfazhillah/a98e66aa0cfc6670371566bde9701050 to your computer and use it in GitHub Desktop.
Save ihfazhillah/a98e66aa0cfc6670371566bde9701050 to your computer and use it in GitHub Desktop.
#!/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