From dbeae3654848af7820d33c4af321c0a176fb9394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Badst=C3=BCbner?= Date: Thu, 7 Mar 2024 11:41:24 +0100 Subject: [PATCH] fix(modules,contrib,thunderbird): grep binary file error --- bumblebee_status/modules/contrib/thunderbird.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee_status/modules/contrib/thunderbird.py b/bumblebee_status/modules/contrib/thunderbird.py index 1a658044..494ff427 100644 --- a/bumblebee_status/modules/contrib/thunderbird.py +++ b/bumblebee_status/modules/contrib/thunderbird.py @@ -63,7 +63,7 @@ def __getThunderbirdStream(self): cmd = ( "find " + self.__home - + " -name '*.msf' -exec grep -REo '\^A1=[0-9a-fA-F]+)' {} + | grep" + + " -name '*.msf' -exec grep -aREo '\^A1=[0-9a-fA-F]+)' {} + | grep" ) for inbox in self.__inboxes: cmd += " -e {}".format(inbox)