파일, 디렉토리 권한 설정. 하위 모든 파일 권한 설정. find /path/to/location -type f -print0|xargs -0 chmod 644 하위 모든 디렉토리 권한 설정. find /path/to/location -type d -print0 |xargs -0 chmod 755 하위 모든 파일&디렉토리 권한설정. chmod -R 644 /path/to/location winaero.com/run-chmod-separately-for-files-and-directories/ Run Chmod separately for files and directories If you are a Linux user, you have probably heard about the console app ch..