# Verifica Registros Duplicados
# by Mameli
if [ $# -lt 1 ]; then
clear
echo Sintaxe correta: duplicados.sh \'arquivo\'
echo Sendo o nome do arquivo com extensao e sem usar as aspas
echo .
exit
fi
if [ ! -f $1 ]; then
clear
echo Arquivo $1 nao encontrado
echo .
exit
fi
cat $1 | sort | uniq > duplicados.sh.tmp
while read Linha
do
if [ `grep $Linha $1 | wc -l` -gt 1 ]; then
echo $Linha
fi
done
rm -f duplicados.sh.tmp"