Cut
Jump to navigation
Jump to search
Overview
cut 명령어 내용 정리.
Options
-d, --delimiter=DELIM
구분자(Delimiter)를 지정한다. <source lang=bash> $ ls | sort | cut -d'.' -f1 | uniq alternatives apport apt ... </source>
-f, --fields=LIST
지정된 필드만을 표시한다.
-c, --characters=LIST
지정된 캐릭터 갯수만을 표시한다.
References
<references />