Awk

ph
Admin (토론 | 기여)님의 2014년 8월 7일 (목) 12:33 판
이동: 둘러보기, 검색
$ # print all but first two columns
$ # http://stackoverflow.com/a/2961994/766330
$ cat somefile | awk '{$1=$2=""; print $0}'