From b257be64b962091d907bf857b3df1d74ccef72de Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Sun, 5 Nov 2017 11:14:15 +0100 Subject: [PATCH] More readable 'make fuzzy'. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bd0f4425..1b5bbf09 100644 --- a/Makefile +++ b/Makefile @@ -79,4 +79,4 @@ endif .PHONY: fuzzy fuzzy: - find -name '*.po' | xargs -L1 msgattrib --only-fuzzy --no-obsolete + for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c ^msgid) $$file; done | grep -v ^0 | sort -gr