We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2aac13b + 938c88c commit 7fc7f59Copy full SHA for 7fc7f59
1 file changed
Makefile
@@ -100,10 +100,10 @@ wrap: venv
100
SHELL:=/bin/bash
101
.ONESHELL:
102
dict_dups:
103
- if [[ $$(cat dict| sort | uniq -dc) ]]; then\
104
- echo -e "\n\n\n ####################### \n\n\n"
+ if [[ $$(cat dict| sort | uniq -dc) ]]; then
+ echo -e "\n #######################\n"
105
echo "duplicated lines in the dict file"
106
- uniq -dc dict
+ sort dict | uniq -dc |sort -h
107
exit 1
108
else
109
echo "no duplicated lines"
0 commit comments