리눅스마스터 1급 2020년 1회 24번
From IT Wiki
Revision as of 01:23, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 리눅스 시스템 관리
문제[edit | edit source]
24. 다음 중 lin.txt 파일에서 a로 시작되는 줄만 검색하려고 할 때의 명령으로 알맞은 것은?
- ① grep a lin.txt
- ② grep ^a lin.txt
- ③ grep [a] lin.txt
- ④ grep [^a] lin.txt
풀어보기[edit | edit source]
정답[edit | edit source]
- 2번