2010年5月11日火曜日

ファイル、ディレクトリだけを chmod する方法

ファイル、ディレクトリだけを chmod する方法

ファイル:
  find . -type f -print | xargs chmod 664

ディレクトリ:
  find . -type d -print | xargs chmod 775