cut 명령어

c or linux 2012. 10. 25. 15:50

 

리눅스 쉘에서 파싱하는데 많이 자주 사용하는 리눅스 명령어이다.

특히 환경 변수 나 .bashrc와 같은 파일에서 찾을 때 유용하다.

 

-d 는 delimeter token

-f 는 field를 의미한다.

 

예1) property 파일의 key, value 찾기

$ cat 25.txt

aaaa=bbbb

$ cat 25.txt  | cut -d '=' -f 1
aaaa

$ cat 25.txt  | cut -d '=' -f 2
bbbb

 

예2)

$ env | grep JAVA_HOME | cut -d '=' -f2
/usr/j2se

Posted by '김용환'
,