ファイルの場合 find . -type f -print | xargs chmod 644 ディレクトリの場合 find . -type d -print | xargs chmod 755
ファイルの場合—ファイルまたはディレクトリのみへの chmod コマンド (tec-q note)
find . -type f -print | xargs chmod 644
ディレクトリの場合
find . -type d -print | xargs chmod 755
ファイルの場合—ファイルまたはディレクトリのみへの chmod コマンド (tec-q note)
find . -type f -print | xargs chmod 644
ディレクトリの場合
find . -type d -print | xargs chmod 755