Cut

From 탱이의 잡동사니
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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 />