chmod
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
#contents
&tag(コマンド);
* [[コマンド]] [#c7c7d539]
- [[chmodでファイルのパーミッションを再帰的に変更する>htt...
chmodで再帰的にファイルのパーミッションを変更するには、...
find ./ -type f -print | xargs chmod 644
特定のファイルのみ、の場合はこのようになります。
find ./ -name *.rhtml -type f -print | xargs chmod 644
- [[chmodでパーミッション変更。再帰オプション(-R)は実は使...
$ find . -type f -exec chmod 644 \{\} \;
- [[ディレクトリだけchmodで再帰的に変更する方法 - 浜村拓...
find /var/www/ -type d -exec chmod 755 {} \;
- [[ファイルやディレクトリのパーミッションを一括で置換し...
こうすると一回の chmod で済みます。
chmod -R a=rX,u+w path/to/dir
終了行:
#contents
&tag(コマンド);
* [[コマンド]] [#c7c7d539]
- [[chmodでファイルのパーミッションを再帰的に変更する>htt...
chmodで再帰的にファイルのパーミッションを変更するには、...
find ./ -type f -print | xargs chmod 644
特定のファイルのみ、の場合はこのようになります。
find ./ -name *.rhtml -type f -print | xargs chmod 644
- [[chmodでパーミッション変更。再帰オプション(-R)は実は使...
$ find . -type f -exec chmod 644 \{\} \;
- [[ディレクトリだけchmodで再帰的に変更する方法 - 浜村拓...
find /var/www/ -type d -exec chmod 755 {} \;
- [[ファイルやディレクトリのパーミッションを一括で置換し...
こうすると一回の chmod で済みます。
chmod -R a=rX,u+w path/to/dir
ページ名: