- 전체 사용자 목록
# cat /etc/passwd
# cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
...
- root useradd 또는 adduser를 통해 생성한 사용자 계정
# grep /bin/bash /etc/passwd
# grep /bin/bash /etc/passwd
root:x:0:0:root:/root:/bin/bash
nb:x:1000:1000:agent-account:/home/nb:/bin/bash
- 아이디만 보여주기 옵션
cut -f1 -d:
# cut -f1 -d: /etc/passwd
root
bin
adm
mail
- The compgen Command
# compgen -u | column
compgen 명령을 -u(사용자) 옵션과 함께 사용하여 사용자 계정을 나열할 수 있습니다. 행당 하나의 사용자 이름을 포함하는 하나의 긴 목록이 아닌 column 명령을 통해 출력을 파이프하여 사용자 계정을 열에 나열합니다.
# compgen -u | column
root systemd-network tss nfsnobody
bin dbus chrony adm
...
'Server > linux' 카테고리의 다른 글
[nginx robots 설정] nginx 에서 robots.txt 파일 별도 지정 (0) | 2023.04.06 |
---|---|
[nginx ssl 설정] nginx ssl 설정 및 경고 메세지 처리 (0) | 2022.12.27 |
[Linux 사용자 관리 명령] useradd, usermod 및 userdel 명령 (0) | 2022.12.27 |
[TLS버전확인] openssl s_client 명령어로 ssl 및 tls 체크 (0) | 2022.12.26 |