mirror of
https://github.com/edoardottt/awesome-hacker-search-engines.git
synced 2024-10-01 01:05:51 -04:00
28 lines
581 B
Bash
Executable File
28 lines
581 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# https://github.com/edoardottt/awesome-hacker-search-engines
|
|
#
|
|
# This script checks if there are duplicate entries in the README file.
|
|
#
|
|
|
|
readme="README.md"
|
|
|
|
pwd=$(pwd)
|
|
|
|
if [[ "${pwd: -7}" == "scripts" ]];
|
|
then
|
|
readme="../README.md"
|
|
fi
|
|
|
|
links=$(cat $readme | egrep "\- \[" | wc -l)
|
|
|
|
uniqlinks=$(cat $readme | egrep "\- \[" | uniq | wc -l)
|
|
|
|
if [[ $links -eq $uniqlinks ]];
|
|
then
|
|
echo "[ OK! ] NO DUPLICATES FOUND."
|
|
echo "$links links in README."
|
|
else
|
|
echo "[ ERR ] DUPLICATES FOUND!"
|
|
cat $readme | egrep "\- \[" | uniq -c | egrep -iv "1 - ["
|
|
fi |