Awk: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
Line 4: Line 4:
== Options ==
== Options ==
=== -F ===
=== -F ===
Delimiter 설정을 바꾼다.  
Delimiter 설정을 바꾼다. 기본값은 ' '(공백)이다.
<source lang=bash>
$ cat test.txt | awk -F':' '{print $1}'
</source>


[[category:programming]]
[[category:programming]]

Revision as of 13:35, 25 July 2016

Overview

AWK 내용 정리

Options

-F

Delimiter 설정을 바꾼다. 기본값은 ' '(공백)이다. <source lang=bash> $ cat test.txt | awk -F':' '{print $1}' </source>