- 论坛徽章:
- 0
|
bash-4.2$ cat 3.txt
"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"AFG"|"9"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"ALA"|"6"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"CCC"|"6"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"WWW"|"6"
bash-4.2$ cat 4.txt
"AFG"
"ALA"
bash-4.2$ gawk -F'|' 'BEGIN{OFS="|"} FNR==NR{array1[$1]=$1; next} {for (i=1;i<=17;i++) {printf "%s%s", $i, OFS}; if (array1[$18]) {printf "%s|\"\"|%s", $18, $19} else {printf "\"\"|%s|%s", $18,$19}; printf "\n"}' 4.txt 3.txt
"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"AFG"|""|"9"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|"ALA"|""|"6"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|""|"CCC"|"6"
"4"|"5"|"6"|"4"|"5"|"6"|"7"|"8"|"9"|"10"|"11"|"12"|"13"|"14"|"15"|"16"|"17"|""|"WWW"|"6"
|
|