From 4930f456877fc174b953c522c21afb01a9e4cb9f Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Tue, 18 Feb 2020 20:41:05 +0000 Subject: [PATCH] cleanpo.sh: fix unique line printing Signed-off-by: Ivailo Monev --- cleanpo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanpo.sh b/cleanpo.sh index 0171e31..2b91653 100755 --- a/cleanpo.sh +++ b/cleanpo.sh @@ -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"