# 연습을 위해 words를 git에서 하나 받아왔습니다.
# https://github.com/dwyl/english-words
wget https://github.com/dwyl/english-words/raw/master/words.txt
실제로는 결과가 너무 많아 head 옵션을 추가해서 잘라 봤습니다..
# grep OT words.txt
BOT
BSOT
CAROT
CHOTS
CMOT
# grep -E "OT|AT" words.txt
ABATS
AFATDS
ATF
CAROT
CMOT
COCOT
......
# grep -i prince words.txt
Port-au-Prince
priest-prince
Prince
prince-abbot
# grep spa words.txt
aerospace
affenspalte
airspace
airspaces
# grep ^spa words.txt
spaad
space
spaceband
space-bar
spaceborne
# grep spa$ words.txt
Aspa
Crispa
getspa
# grep spa$ words.txt | head -2
Aspa
Crispa
# grep spa$ words.txt | head -2 > jin
# cat jin
Aspa
Crispa
추가로 이런 건 어떻게 찾을 수 있을까..? 라는 의문이 생기면
man 페이지를 읽어보면서 직접 풀어보세요 :)
5.파일 시스템 구축 및 설정 - Stratis로 스토리지 관리 (0) | 2022.10.23 |
---|---|
5.파일 시스템 구축 및 설정 - 파일 시스템 생성, 마운트, 언마운트 (0) | 2022.10.20 |
4.로컬 스토리지 설정 - fdisk로 파티션 생성, 삭제, 확인 (0) | 2022.10.20 |
1. 필수 툴 이해 및 사용 - find 정리 (0) | 2022.05.09 |
1. 필수 툴 이해 및 사용 - 소프트 링크와 하드 링크 (0) | 2022.04.22 |