awesome-hacker-search-engines/scripts/check-dups.sh

15 lines
303 B
Bash
Raw Normal View History

2023-04-12 10:15:59 +00:00
#!/bin/bash
readme="README.md"
links=$(cat $readme | egrep "\- \[" | wc -l)
uniqlinks=$(cat $readme | egrep "\- \[" | uniq | wc -l)
if [[ $links -eq $uniqlinks ]];
then
echo "NO DUPLICATES FOUND."
else
echo "DUPLICATES FOUND!"
cat $readme | egrep "\- \[" | uniq -c | egrep -iv "1 - ["
fi