- 论坛徽章:
- 145
|
回复 1# Feyiz
第一问 牙膏挤不完...
$ bash diff.sh
第一组 B <[GZ200 ] >[SZ0200] st=5,len=6
第二组 C <[201506] >[201505] st=1,len=6
第二组 E <[6] >[5] st=6,len=1
第三组 H <[4123c] >[1 c] st=3,len=5
$ cat check.txt
第一组变量名 起始位置 长度
A 1 4
B 5 6
第二组变量名 起始位置 长度
C 1 6
D 7 2
E 6 1
F 7 6
第三组变量名 起始位置 长度
G 1 2
H 3 5
$ bash diff.sh
第一组 B <[GZ200 ] >[SZ0200] st=5,len=6
第二组 C <[201506] >[201505] st=1,len=6
第二组 E <[6] >[5] st=6,len=1
第三组 H <[4123c] >[1 c] st=3,len=5
jason@jason-VirtualBox:~
$ cat diff.sh
awk '
function get(file, data){
getline data < file;
return data;
}
match($0,/(第..)/,m){
a=get("a.txt");
b=get("b.txt");
item = m[1];
next;
}
{
as=substr(a, $2, $3);
bs=substr(b, $2, $3);
if(as != bs){
printf("%s %c %-20s %-20s st=%d,len=%d\n",
item, $1, "<["as"]", ">["bs"]", $2, $3 );
}
}' check.txt
|
|