본문 바로가기

linux(리눅스)

특정 column만 뽑아내는 법

728x90
반응형

cat Homo_sapiens.GRCh37.74.gtf | cut -f9 | cut -d' ' -f2 > res


cut은 기본적으로 tab 구분자로 진행함. -f 뒤의 수는 몇 번 째 column을 뽑을지 지정하는 것임

-d' ' 는 space단위로 자르라는 것


sort res | uniq > res2 텍스트에서 uniq한 것만 뽑아내는 법

https://unix.stackexchange.com/questions/11939/how-to-get-only-the-unique-results-without-having-to-sort-data



37.67 : 57659

37.68 : 59573

37.69 : 60386

37.71 : 61893

37.72 : 62893

37.73 : 63152

37.74 : 63677

37.75 : 63680


728x90
반응형