특정 상위 디렉토리 내의 모든 파일 및 하위 디렉토리에 대한 그룹 권한을 해당 특정 파일 또는 디렉토리에 대한 사용자 권한 설정으로 설정하려고합니다.
예를 들어 /path/to/parentdir
# Permissions before
# Path Permissions
/path/to/parentdir/file1 755
/path/to/parentdir/file2 644
/path/to/parentdir/file3 600
# Permissions after
/path/to/parentdir/file1 775
/path/to/parentdir/file2 664
/path/to/parentdir/file3 660
희망적으로 하나의 명령 으로이 작업을 수행 할 수있는 간단한 방법이 있기를 바랍니다. 많은 명령으로 스크립트를 사용하는 방법을 생각할 수는 있지만 직접 수행하는 방법이 있어야한다고 생각합니다.
미리 감사드립니다!