Last active
December 14, 2015 09:08
-
-
Save yymm/5062712 to your computer and use it in GitHub Desktop.
remove .pyc ワンライナー
This file contains 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
python -c "import os;[os.remove(x) for x in os.listdir('./') if x.find('.pyc') > 0]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rm *.pyc
でいいとかあえて言わない。