Skip to content

Instantly share code, notes, and snippets.

@dotherightthing
Created September 22, 2022 04:12
Show Gist options
  • Save dotherightthing/3aa8f8ae8197887508bfe1062ce14120 to your computer and use it in GitHub Desktop.
Save dotherightthing/3aa8f8ae8197887508bfe1062ce14120 to your computer and use it in GitHub Desktop.
Decompile .pyc files in a directory and any sub-directores
pip install uncompyle6
find . -name "*.pyc" -exec bash -c 'uncompyle6 $1 > $1.py' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment