bash script2020. 10. 22. 12:13

 

반달가면 이글루에서 백업 - bahndal.egloos.com/410986

 

탭이 포함된 문자열을 검색하려면 grep이 아니라 awk를 이용해야겠다.

 

test_file.txt에서 "abc[탭]def"를 검색하려면

 

cat test_file.txt | awk "/abc\tdef/"

 

또는

 

awk "/abc\tdef/" test_file.txt

 

이렇게 써야 한다.

 

728x90

'bash script' 카테고리의 다른 글

[bash: openssl] 파일 암호화  (0) 2020.10.23
[bash: grep] 다중 문자열 검색  (0) 2020.10.22
[bash: echo] 같은 줄에 문자열 겹쳐 쓰기  (0) 2020.10.21
[bash: tr] 대소문자 변환  (0) 2020.10.21
[bash: RANDOM] 난수 생성  (0) 2020.10.21
Posted by 반달가면