Skip to content

Instantly share code, notes, and snippets.

@bruntonspall
Created January 7, 2011 12:54
Show Gist options
  • Save bruntonspall/769421 to your computer and use it in GitHub Desktop.
Save bruntonspall/769421 to your computer and use it in GitHub Desktop.
Convert pip download cache into normal files
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