Created
June 23, 2012 19:36
-
-
Save setoh2000/2979659 to your computer and use it in GitHub Desktop.
USB経由でソースコピーしたらファイルの属性が変わってたのでこれで修正 (Mac)
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
# カレントディレクトリ以下のファイルは644, ディレクトリは755に統一 | |
# (パーミッションを削る方向で) | |
find . -type f -print0 | xargs -0 chmod go-wx | |
find . -type f -print0 | xargs -0 chmod u-x | |
find . -type d -print0 | xargs -0 chmod go-w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment