반응형
22. /etc/passwd 파일에서 문자열 'bash'가 들어 있는 행을 출력하시오.
[root@linux1 ~]# grep bash /etc/passwd
root:x:0:0:root:/root:/bin/bash
student:x:1000:1000:student:/home/student:/bin/bash
user1:x:1001:1001::/home/user1:/bin/bash
user2:x:1002:1002::/home/user2:/bin/bash
[root@linux1 ~]#
23. /etc 다렉토리 아래에 있는 passwd 파일의 경로를 찾으시오.
[root@linux1 ~]# find /etc -name passwd
/etc/pam.d/passwd
/etc/passwd
[root@linux1 ~]#
24. cp의 실행 파일이 있는 위치를 검색하시오.
[root@linux1 ~]# which cp
alias cp='cp -i'
/usr/bin/cp
[root@linux1 ~]#
|
반응형
'CentOS > Study' 카테고리의 다른 글
[실습]혼자해보기 - 파일 복사/이동/삭제하기 (0) | 2020.09.18 |
---|---|
[실습]혼자해보기 - 파일 내용 출력하기 (0) | 2020.09.18 |
[이론]디렉터리와 파일 사용하기 연습문제 - 3 (0) | 2020.09.14 |
[이론]디렉터리와 파일 사용하기 연습문제 - 2 (0) | 2020.09.14 |
[이론]디렉터리와 파일 사용하기 연습문제 - 1 (0) | 2020.09.14 |