2011-11-02から1日間の記事一覧

ファイルとディレクトリのパーミッションの一括変更

//ディレクトリのみ $ find . -type d -exec chmod 755 {} \;//ファイルのみ $ find . -type f -exec chmod 644 {} \;