컬럼: 1개의 글
[Bash] 데이터에서 특정 컬럼 추출하는 방법
데이터에서 특정 컬럼을 추출해야 하는 경우 기본으로 awk를 사용하면 seperator는 " "(공백)으로 들어가기 때문에 -F오션을 사용해서 내가원하는 delimter를 설정할 수 있다. print $를 사용하면 되는데, index는 1부터 시작이다 $ awk -F "\t" '{print $5}' data.txt.sample reference https://stackoverflow.com/questions/2609552/how-to-use-as-awk-field-separator 출처 : ourcstory.tistory.com/526?category=716432
기타/Shell script, bash
2021. 5. 3. 01:35