#!/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) |