Skip to content

Instantly share code, notes, and snippets.

@bgstack15
Created April 6, 2018 15:51
Show Gist options
  • Save bgstack15/b435b1120192a7dcbd032583e0ade46e to your computer and use it in GitHub Desktop.
Save bgstack15/b435b1120192a7dcbd032583e0ade46e to your computer and use it in GitHub Desktop.
Set python libs to be world readable
#!/bin/sh
worldreadpythonlibs_version="2018-04-06a"
for word in /usr/lib{,64}/python2.7/site-packages ;
do
find ${word} -exec chmod g+rX,o+rX {} \;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment