ls -l 에서 첫번째 행부터 한 칸씩 건너뛰고 출력
ls -l | awk '{if(NR%2==0) print $0}'
try#2→ ls -l | awk '{if(NR%2==1) print $0}'
awk “{action}”
으로 표현을 함
NR
→ 행 번호를 나타낸다.
행이 1행이므로 이를 활용함 (아까 잘못 이해함)
print $0
→ 해당 행의 모든 내용 출력
- awk 의 경우 앞서 04에서 설명함
- NR 이 저번에 안나온 키워드.
- NR
- The ordinal number of the current record from the start of input. Inside a BEGIN action the value shall be zero. Inside an END action the value shall be the number of the last record processed.
- 레코드의 행번호 idx 시작은 0부터