From e3dd06ef41b63d0ee362fea74a3f2d798dbfe929 Mon Sep 17 00:00:00 2001 From: Christian von Roques Date: Tue, 12 Sep 2017 12:31:23 +0200 Subject: [PATCH] fix regex-typo in lxc-monitor.sgml.in To match names beginning with the letters "f" or "b" one can use the regular expression "[fb].*" or "(f|b).*", but not "[f|b].*", which would match strings beginning with "f", "|", or "b". Signed-off-by: Christian von Roques --- doc/lxc-monitor.sgml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lxc-monitor.sgml.in b/doc/lxc-monitor.sgml.in index e57314e58..b6b31cfe1 100644 --- a/doc/lxc-monitor.sgml.in +++ b/doc/lxc-monitor.sgml.in @@ -121,7 +121,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - lxc-monitor -n '[f|b].*' + lxc-monitor -n '[fb].*' will monitor the different states for container with the -- 2.39.5