Created
January 7, 2011 12:54
-
-
Save bruntonspall/769421 to your computer and use it in GitHub Desktop.
Convert pip download cache into normal files
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
for fname in *; | |
do | |
mv $fname $(echo $fname | sed -e 's/%2F/\//g' -e 's/.*\///'); | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment