cut
stdin 또는 파일에서 특정 필드를 잘라내는 명령어. 더 많은 정보: https://keith.github.io/xcode-man-pages/cut.1.html.
stdin
{{명령어}} | cut -c 5
cut -c 5-10 {{경로/대상/파일}}
TAB
cut -f 2,6 {{경로/대상/파일}}
{{명령어}} | cut -d "{{구분자}}" -f 2-
{{명령어}} | cut -d " " -f -3