[linux] 명령어 모음zip

less than 1 minute read

Linux 명령어 모음zip

Reference

Concpet

(1) 파일 관련 명령어

1) 파일 권한 변경 명렁어

chmod {파일권한} {파일경로}

-- drwxr-xr-x
chmod 755  {파일경로}

-- drwxrwxr-x it is:
chmod 775  {파일경로}

2) 파일명 찾기

find -name ‘*.pl’

(2) selinux 관련 명령어

1) 권한 확인 명령어

ls -Z

2) 권한 부여 명령어

chcon-t {권한} {파일경로}

Comments