- 论坛徽章:
- 0
|
看到1楼和2楼的自我对话 我感到很无助
nigelrax 发表于 2010-01-21 10:49 ![]()
大家不管,我只好自己来了。这几天看了下官方手册,写个了基本可用的脚本。
- BEGIN {
- while((getline < "make_1")>0) {
- for(i=2;i<=NF;i++) {
- if(split($i,tmp_array,"=") == 2){
- # assign the name-value pair in array
- source_option[tmp_array[1]]=tmp_array[2];
- source_option_hit[tmp_array[1]]=0;
- }
- }
- }
- }
- {
- for(i=2;i<=NF;i++) {
- if(split($i,tmp_array,"=") == 2){
- if(tmp_array[1] in source_option) {
- source_option_hit[tmp_array[1]]=1;
- if(tmp_array[2] != source_option[tmp_array[1]])
- result_new_value=result_new_value"\n"tmp_array[1]":"tmp_array[2]" <-> "so\
- urce_option[tmp_array[1]];
- }
- else
- result_new_option=result_new_option"\n"$i" [make_1]";
- }
- }
- }
- END {
- print "====== result_new_option ======="result_new_option;
- for( i in source_option ) {
- if(source_option_hit[i]==0)
- print i"="source_option[i]"[make_2]";
- }
- print "";
- print "====== result_new_value ======="result_new_value;
- }
复制代码 使用如下:
[suchangyu@localhost work]$cat make_1
make USE_AAA=yes USE_BBB=no USE_CC.09=yes
[suchangyu@localhost work]$cat make_2
make USE_AAA=yes USE_BWB=no USE_CC.09=no
[suchangyu@localhost work]$awk -f diffmakeoption.awk make_2 |
|