- 论坛徽章:
- 0
|
本帖最后由 bxfqing 于 2010-08-30 13:32 编辑
[quote="大脚王"]AWK的简单问题,如何去掉第一行和第一列??
AAAAAAAAAAAAAAAAAAAA
1|2|2|2|2|2|2|2|2 ...
anonimousboy 发表于 2003-06-10 07:41 ![]()
awk -F"|" '{if(NR>1){$1=""print $0}}' urfile > newfile
应该是:
awk -F"|" '{if(NR>1){$1="";print $0}}' urfile > newfile
我的awk版本 WIN平台CYGWIN
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.
添加执行结果
test@win /cygdriver/d
awk -F"|" '{if(NR>1){$1="";print $0}}' CCB.txt
2 2 2 2 2 2 2 2 2 2 2 2 2
3 3 3 3 3 3 3 3 3 3 3 3 3 |
|