2017-03-16 77 views
0

我想通过在不同文件上列出的名称来提取某些列。Linux - 限制文本的长度

我发现这个有用的代码如下面的链接:AWK extract columns from file based on header selected from 2nd file

我试图编辑一些打印头和限制头的长度。

#!/bin/bash 

DATAFILE=${1:-data.txt} 
COLUMNFILE=${2:-list.txt} 

awk -v colsFile="$COLUMNFILE" ' 
    BEGIN { 
    j=1 
    while ((getline < colsFile) > 0) { 
     col[j++] = $1 
    } 
    n=j-1; 
    close(colsFile) 
    for (i=1; i<=n; i++) s[col[i]]=i 
    } 
    NR==1 { 
    for (f=1; f<=NF; f++) 
     if ($f in s) c[s[$f]]=f 
     printf ${$f:0:3} 
    } 
    { sep="" 
    for (f=1; f<=n; f++) { 
     printf("%c%s",sep,$c[f]) 
     sep=" " 
    } 
    print "" 
    } 
' "$DATAFILE" 

我在链接之前使用了相同的例子。

$ cat data.txt 
ID,head1,head2,head3,head4 
1,25.5,1364.0,22.5,13.2 
2,10.1,215.56,1.15,22.2 

$ cat list.txt 
ID 
head1 
head4 

$ dataExtractor.sh data.txt list.txt 
1,25.5,13.2 
2,10.1,22.2 

与输出我要的是

ID,hea,hea 
1,25.5,13.2 
2,10.1,22.2 

后,我编辑的代码,包括$ {$ F:0:3},它给了我一个语法错误。 请帮我这个,谢谢!

回答

0

man 1 awk

substr(s, i [, n])  Return the at most n-character substring of s 
          starting at i. If n is omitted, use the rest 
          of s. 

...

substr($f, 0, 3)