2015年5月28日 星期四

[Linux 常見問題] How to use “:” as awk field separator?

Source From Here 
Question 
Given following command: 
$ echo -e "1:2:3:4\r\n5:6:7:8" | awk '{print $1}'
1:2:3:4
5:6:7:8

I expected to have output: 
1
5

How-To 
"-F" is a command line argument not awk syntax, try: 
$ echo -e "1:2:3:4\r\n5:6:7:8" | awk -F ':' '{print $1}'
1
5

Supplement 
Awk Introduction Tutorial – 7 Awk Print Examples

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...