再帰的に ディレクトリの読み取り&実行権限を与えるために:
find /path/to/base/dir -type d -exec chmod 755 {} +
再帰的に ファイルの読み取り権限を与えるために:
find /path/to/base/dir -type f -exec chmod 644 {} +
処理するオブジェクトが多数ある場合:
chmod 755 $(find /path/to/base/dir -type d)
chmod 644 $(find /path/to/base/dir -type f)
または、chmod
の産卵を減らすために:
find /path/to/base/dir -type d -print0 | xargs -0 chmod 755
find /path/to/base/dir -type f -print0 | xargs -0 chmod 644
&001
この種のことでよくあるのは、ディレクトリは755に設定しても、ファイルは644に設定することです。この場合、nikのfind
の例よりも少し早い方法があります:
chmod -R u+rwX,go+rX,go-w /path
意味:
-R
= 再帰的に; u+rwX
= ユーザーは読み書きと実行ができる; go+rX
= グループと他の人は読み書きと実行ができる; go-w
= グループと他の人は書き込めない ここで注意すべき重要なことは、大文字のX
は小文字のx
とは異なる振る舞いをするということです。マニュアルでは次のように読めます:
ファイルがディレクトリである場合、または、execute/search ビットのいずれかが元の (変更されていない) モードで設定されている場合、execute/search ビットが設定されています。
Recursive chmod script for dirs and/or files - Gist :
chmodr.sh
#!/bin/sh
#
# chmodr.sh
#
# author: Francis Byrne
# date: 2011/02/12
#
# Generic Script for recursively setting permissions for directories and files
# to defined or default permissions using chmod.
#
# Takes a path to recurse through and options for specifying directory and/or
# file permissions.
# Outputs a list of affected directories and files.
#
# If no options are specified, it recursively resets all directory and file
# permissions to the default for most OSs (dirs: 755, files: 644).
# Usage message
usage()
{
echo "Usage: $0 PATH -d DIRPERMS -f FILEPERMS"
echo "Arguments:"
echo "PATH: path to the root directory you wish to modify permissions for"
echo "Options:"
echo " -d DIRPERMS, directory permissions"
echo " -f FILEPERMS, file permissions"
exit 1
}
# Check if user entered arguments
if [$# -lt 1] ; then
usage
fi
# Get options
while getopts d:f: opt
do
case "$opt" in
d) DIRPERMS="$OPTARG";;
f) FILEPERMS="$OPTARG";;
\?) usage;;
esac
done
# Shift option index so that $1 now refers to the first argument
shift $(($OPTIND - 1))
# Default directory and file permissions, if not set on command line
if [-z "$DIRPERMS"] && [-z "$FILEPERMS"] ; then
DIRPERMS=755
FILEPERMS=644
fi
# Set the root path to be the argument entered by the user
ROOT=$1
# Check if the root path is a valid directory
if [! -d $ROOT] ; then
echo "$ROOT does not exist or isn't a directory!" ; exit 1
fi
# Recursively set directory/file permissions based on the permission variables
if [-n "$DIRPERMS"] ; then
find $ROOT -type d -print0 | xargs -0 chmod -v $DIRPERMS
fi
if [-n "$FILEPERMS"] ; then
find $ROOT -type f -print0 | xargs -0 chmod -v $FILEPERMS
fi
基本的には再帰的なchmodを行いますが、コマンドラインオプションの柔軟性を少し提供します(ディレクトリやファイルのパーミッションを設定したり、両方を除外したり、自動的に755-644にすべてをリセットしたりします)。また、いくつかのエラーシナリオをチェックします。
再帰的にディレクトリの読み取り&実行権限を与えるために:
find /path/to/base/dir -type d -exec chmod 755 {} \;
再帰的にファイルの読み取り権限を与えるために:
find /path/to/base/dir -type f -exec chmod 644 {} \;
私は正しい側にnikの答えをアップグレードさせてくれないよりも良い遅さ。私の解決策は遅いですが、それはファイル名の任意のシンボルで、任意の数のファイルで動作し、あなたは普通にsudoでそれを実行することができます(しかし、それはsudoで異なるファイルを発見する可能性があることに注意してください)。
この python スクリプトを試してみてください。C言語での実装とは別に、これはおそらくそれを行う最速の方法になるでしょう(私は1500万ファイルのファイルシステムを修正するためにそれが必要でしたが、すべて777に設定されていました)
#!/usr/bin/python3
import os
for par, dirs, files in os.walk('.'):
for d in dirs:
os.chmod(par + '/' + d, 0o755)
for f in files:
os.chmod(par + '/' + f, 0o644)
私の場合、いくつかの特別なファイルのchmoddが失敗したので、最後のchmodの周りにトライ/キャッチが必要でした。
また、tree
を使用することができます:
tree -faid /your_directory | xargs -L1 -I{} bash -c 'sudo chmod 755 "$1"' -- '{}'
とフォルダを表示したい場合は、エコー
tree -faid /your_directory | xargs -L1 -I{} bash -c 'sudo chmod 755 "$1" && echo$1' -- '{}'
``` を追加します。