폴더 파일 권한변경
페이지 정보
작성자 JMStudy 작성일15-09-18 15:37 조회7,571회 댓글0건본문
파일만
find ./ -type f -exec chmod -v 755 {} \;
폴더만
find ./ -type d -exec chmod -v 755 {} \;
해당파일만
find ./ -type d -name 파일이름 -exec chmod -v 755 {} \;
해당파일을 제외하고
find ./ -type d \! -name 파일이름 -exec chmod -v 755 {} \;
해당폴더만
find ./ -type d -name 폴더이름 -exec chmod -v 755 {} \;
해당폴더를 제외하고
find ./ -type d \! -name 폴더이름 -exec chmod -v 755 {} \;
find ./ -type f -exec chmod -v 755 {} \;
폴더만
find ./ -type d -exec chmod -v 755 {} \;
해당파일만
find ./ -type d -name 파일이름 -exec chmod -v 755 {} \;
해당파일을 제외하고
find ./ -type d \! -name 파일이름 -exec chmod -v 755 {} \;
해당폴더만
find ./ -type d -name 폴더이름 -exec chmod -v 755 {} \;
해당폴더를 제외하고
find ./ -type d \! -name 폴더이름 -exec chmod -v 755 {} \;
댓글목록
등록된 댓글이 없습니다.