Answers for "remove pycache files from github"

0

remove pycache files from github

python3 -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
python3 -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
Posted by: Guest on August-31-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language