summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2022-09-07 21:34:42 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2022-09-08 14:43:53 +0200
commitfd42cea5f301a10cdeaa29959f04b111de534132 (patch)
tree0bfa9e9f22d63dcbb6eeafc6002752d9ff20399e /slideshow
parent09e499e64ec4acb24c9524c8aacabc6182124442 (diff)
replace egrep/fgrep calls with grep -E/grep -F
as egrep/fgrep is deprecated since long amd grep 3.8+ now actually warns (e.g. "egrep: warning: egrep is obsolescent; using grep -E") Change-Id: I5b10f05dffdd09081deb05cef974e3cdb2907315 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139614 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/qa/debug/nodetree.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/qa/debug/nodetree.sh b/slideshow/qa/debug/nodetree.sh
index 7105ff181d81..78546cb8ce0b 100644
--- a/slideshow/qa/debug/nodetree.sh
+++ b/slideshow/qa/debug/nodetree.sh
@@ -34,7 +34,7 @@
#
###################################################
-egrep "Node connection|Node state" $1 | \
+grep -E "Node connection|Node state" $1 | \
sed -e '/Node state/ s/.*Node state.*: \(.*\)/\1/' \
-e '/Node connection/ s/.*Node connection.*: \(n.*\)/\1/' | \
\