标签:原则 one cat round 需要 bsp == apple for
[root@154 home]# cat file1 3-1-1 POTV=1,POTA=0,POTP=2 1-4-76 POTV=1,POTA=0,POTP=1 2-1-2 POTV=1,POTA=1,POTP=1 3-1-4 POTV=1,POTA=1,POTP=2 4-1-5 POTV=1,POTA=1,POTP=2 7-1-2 POTV=1,POTA=1,POTP=2 3-1-10 POTV=1,POTA=1,POTP=2 1-1-1 POTV=1,POTA=2,POTP=0
[root@154 home]# cat file2 1-1-1 2-1-2 2-1-3 3-1-4 4-1-5
awk ‘$1==‘ ‘"‘ $i ‘"‘ ‘{print $0}‘ file1 这段中单引号是脱义的作用 在awk中精确匹配字符,需要将字符用双引号引用: 即 awk ‘$1=="1-1-1"{print $0}‘ test 所以对传递参数要用单引号将双引号脱义让awk识别
单引号成对出现是按就近原则来的
标签:原则 one cat round 需要 bsp == apple for
原文地址:http://www.cnblogs.com/irockcode/p/7004004.html