awk -F[:] 'NR!=1{print $1}' /etc/passwd
/etc/passwd의 첫번째 줄 제외하고 : 기준 첫 행 출력하기
/etc/passwd NR!=1 -F[:] {print $1}
NR은 줄 번호 Line Number 라고 알면 된다.
'Development > Shell script' 카테고리의 다른 글
[Shell Script] 현재 시간 정보 가져오기 (0) | 2020.01.06 |
---|---|
[Shell Script] 스토리지 데이터 디스크 기본세팅 자동화 스크립트 (0) | 2019.11.10 |
[Linux][Shell Script] daemon start & stop script 예시 (25) | 2019.07.23 |
[Linux][Shell script] while / for 예시, 조건문 -f / -d (27) | 2019.07.23 |
[Shell Script] awk 자주쓰는 옵션 - BEGIN, print (0) | 2019.07.22 |