|
发表于 2007-10-12 07:50:55
|
显示全部楼层
uniq --version
uniq (GNU coreutils) 5.97
Copyright (C) 2006 Free Software Foundation, Inc.
这是自由软件。您可以按照 GNU GPL 协议 <http://www.gnu.org/licenses/gpl.html> 的条款再发布此软件的副本,但我们无法保证相关法律不对这一情形进行限制。
由 Richard Stallman 和 David MacKenzie 编写。
- awk 'BEGIN{oldline="\n"}{if($0!=oldline)print $0;oldline=$0}' 文件
复制代码
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.
- (oldline=$'\n\n'; while read line;do [ "$oldline" != "$line" ] && echo $line ; oldline="$line";done) <文件
复制代码
bash --version
GNU bash, version 3.1.17(1)-release (i486-pc-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc. |
|