WEBサイト制作に関するTips

Linux » ファイルとディレクトリのパーミッションを一挙調整

find /*target_path*/ -type f -print0 | xargs -0 chmod 0664
find /*target_path*/ -type d -print0 | xargs -0 chmod 0775

2014-08-07 11:36:35