Guest User

Untitled

a guest
Nov 17th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # カレントディレクトリ以下のファイルは644, ディレクトリは755に統一
  2. # (パーミッションを削る方向で)
  3. find . -type f -print0 | xargs -0 chmod go-wx
  4. find . -type f -print0 | xargs -0 chmod u-x
  5. find . -type d -print0 | xargs -0 chmod go-w
Add Comment
Please, Sign In to add comment