Linux example of awk

* awk

awk '/asdf/' file

: print a line including asdf

awk '/^(asdf | qwer)/' file

: print a line including asdf or qwer

awk '{print $1 $3}' file

: print first and third fields of file without space

awk '{print $1, $3}' file

: print first and third fields of file with space

awk '$2 == "AS" {print $1, $2}' file

: if second field is AS, print first and third fields of file with space



Thanks,

JF


댓글

이 블로그의 인기 게시물

미국 포닥, 한국으로 돌아가는 이유? (Why do postdoc go back to Korea?)

미국 포닥 - 비지팅 포닥 VS 풀펀딩 포닥 (Visiting Scholar VS Postdoctoral Fellow)

미국 포닥 월급 생활비, 일리노이 텍사스 포닥 (Illinois, Texas Postdoc Living Cost)