- 论坛徽章:
- 36
|
回复 6# jason680
我用你的代码getline时 结果一直输出,改成next才能显示正常结果,[root@dbserver ~]# awk '$1==S1{print S0;do{print $0;next}while(S1==$1);}{S1=$1;S0=$0}' test1.sh
100 line1
100 line2
103 line5
103 line6
103 line5
[root@dbserver ~]# awk --version
GNU Awk 3.1.5
Copyright (C) 1989, 1991-2005 Free Software Foundation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|