cleanpo.sh: fix unique line printing

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2020-02-18 20:41:05 +00:00
parent cda740d95d
commit 4930f45687

View file

@ -29,6 +29,6 @@ result=""
for f in $(find "kde-l10n" -name '*.po' $regex);do
result+="$(basename $f)\n"
done
echo -e "$result" | uniq -u
echo -e "$result" | sort -u
echo "All done"