2017-10-15 81 views
1

./tool.sh -f <file> --edit <id> <column> <value>awk中overwritting文件的列值给出脚本参数

必须执行和数据库如

#id|lastName|firstName|gender|birthday|creationDate|locationIP|browserUsed 
933|Perera|Mahinda|male|1989-12-03|2010-03-17T13:32:10.447+0000|192.248.2.123|Firefox 
1129|Lepland|Carmen|female|1984-02-18|2010-02-28T04:39:58.781+0000|81.25.252.111|Internet Explorer 
4194|Do|Hα»^Ó ChΓ­|male|1988-10-14|2010-03-17T22:46:17.657+0000|103.10.89.118|Internet Explorer 
8333|Wang|Chen|female|1980-02-02|2010-03-15T10:21:43.365+0000|1.4.16.148|Internet Explorer 
8698|Liu|Chen|female|1982-05-29|2010-02-21T08:44:41.479+0000|14.103.81.196|Firefox 
8853|Monteno|Albin|male|1986-04-09|2010-03-19T21:52:36.860+0000|178.209.14.40|Internet Explorer 
10027|Chen|Ning|female|1982-12-08|2010-02-22T17:59:59.221+0000|1.2.9.86|Firefox 
1099511628908|Chen|Wei|female|1985-08-02|2010-05-24T20:52:26.582+0000|27.98.244.108|Firefox 
1099511633435|Smith|Jack|male|1981-04-19|2010-05-26T03:45:11.772+0000|50.72.193.218|Internet Explorer 
1099511635042|Kiss|Gyorgy|male|1984-09-14|2010-05-16T22:57:41.808+0000|91.137.244.86|Chrome 
1099511635218|Law-Yone|Eric|male|1987-01-20|2010-05-26T20:10:22.515+0000|203.81.95.235|Chrome 
1099511638444|Jasani|Chris|female|1981-05-22|2010-04-29T20:50:40.375+0000|196.223.11.62|Firefox 

并给予id列和值,改变该特定ID,该值列

ex。 ./tool.sh -f people.dat --edit 933 4 female

应覆盖该文件 933|Mahinda|female|1989-12-03|2010-03-17T13:32:10.447+0000|192.248.2.123|Firefox

我的代码是:

while [ $# -gt 0 ] 
    do 
      case $1 in 

      --edit) 
        id="$2"; 
        col="$3"; 
        val="$4"; 
      shift 3 
      ;; 
      -f) 
        dbfile=$2; 
      shift 
      esac 
      shift 
    done 

    egrep -o '^[^#]+' ${dbfile} | awk -F '|' -v OFS='|' -v id="${id}" -v col="${col}" -v val="${val}" '{if (($1="id") && ("col"<=8 && "col">=2)) {gsub($col,val)};{print}}' 

到目前为止,该文件中没有永久的变化,唯一的变化有,第一行的所有值成为 “ID”

+1

不清楚替换你的最后一行,请你解释一下代码标签中应该输出什么内容? – RavinderSingh13

+0

“到目前为止,文件中没有永久性更改。”许多unix工具不提供覆盖现有文件的选项。 '* nix'中的安全成语是'awk'{program}'inFile> outFile &&/bin/mv outFile inFile'。祝你好运。 – shellter

+0

另外,学**使用http://shellcheck.net **之前**你的代码发布在这里;-)。当你使用shellcheck时,你需要在第一行包括一个合适的“she-bang”行,通常是'#!/ bin/bash'。祝你好运。 – shellter

回答

1

你有

if (($1="id") && ("col"<=8 && "col">=2)) { 

    ^    ^
     |     | 
     |     | 
     |   Since you got string col, which will always evaluate false 
     | 
     | 
    you are assigning field1 ($1) with string "id" which will be true always 

如果你想申请可变一些条件,那么你需要

if (($1==id) && ($col<=8 && $col>=2)) { 

    ^   ^
     |    | 
     |   AND column value corresponding to variable col is less 
     |   than or equal to 8 and greater than or equal to 2 
     |         ^
     |          | 
    if field1 is equal to variable id   | 
    ^         | 
     |          | 
     |          | 
     _____________ If both are true________| 
         | 
         | 

        gsub($col, $val) 

既然你有标题

在awk overwritting给出脚本参数

1文件的列值),而不是gsub($col, $val),您可以使用$col = $val

2)并且不需要egrep -o '^[^#]+' ${dbfile} |,因为你有你的AWK $1==id && $col<=8 && $col>=2,这将照顾它,并可以如下简化:

awk -F '|' -v OFS='|' -v id="${id}" -v col="${col}" -v val="${val}" ' 
     $1==id && $col<=8 && $col>=2 { $col = val; print} 
     ' "${dbfile}" 
+0

我用'egrep-o'^ [^#] +''忽略用# –

+0

启动的任何注释但是'awk -F'|' -v OFS ='|' -v id =“$ {id}”-v col =“$ {col}”-v val =“$ {val}”' $ 1 == id && $ col <=8 && $col> = 2 {$ col = val; print} '“$ {dbfile}”'没有覆盖文件。 –

+0

如果你正在使用'gawk',可以使用'gawk -i inplace',否则你必须写入一些临时文件,然后像''dbffile}> tmpfile && mv tmpfile“$ {dbfile}”那样移动' –

0

通过这一个

sed -i '/'"$id"'/s/\([^|]*\)/'"$val"'/'"$col" "$dbfile" 
+0

实际上,它感谢你没有得到'\([^ |] * \)'部分。你能不能详细说明一下? –

+0

好吧,我试试:[^ |] *表示每个字符都不是'|',所以它是列的内容,因为'|'单独的列。这种模式匹配7次。我告诉sed将$ col列的内容替换为$ val的值。请参阅info sed subtitute命令的“s”并标记g或数字。 –

+0

您必须替换'/'“$ id”'/ by'/ ^'“$ id”'| /以匹配$ id更安全。 –