Chinaunix首页 | 论坛 | 博客
  • 博客访问: 82216
  • 博文数量: 32
  • 博客积分: 1526
  • 博客等级: 上尉
  • 技术积分: 270
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-28 13:56
文章分类

全部博文(32)

文章存档

2012年(1)

2011年(15)

2010年(1)

2009年(15)

我的朋友
最近访客

分类:

2009-10-28 15:07:53

#!/bin/bash
##################################################################################
#This script is used to help you find out the repeat entries in your file.
#version 1.0
#2009-10-28
#written by zhengyu
#If you have some questions, you can contact me with
##################################################################################
if [ -z $1 ] || [ -z $2 ]; then
    echo "####################################################################"
    echo "Usage:
    guolv.sh yourfilename yourfilename"
    echo "Notice:
    The filename must be the same one, or the result will be wrong! "
    echo "Example:
    guolv.sh guolv.txt guolv.txt"
    echo "####################################################################"
else
    awk 'NR==FNR{a[$2","$3]++;next}a[$2","$3]>1' $1 $2
fi
exit 0
阅读(780) | 评论(0) | 转发(0) |
0

上一篇:MySQL修改密码失败

下一篇:#!/bin/bash -

给主人留下些什么吧!~~