Created
April 6, 2018 15:51
-
-
Save bgstack15/b435b1120192a7dcbd032583e0ade46e to your computer and use it in GitHub Desktop.
Set python libs to be world readable
This file contains hidden or 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
#!/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