From 50c9a7602ca6c7e9932013a0f6948acff679dfa2 Mon Sep 17 00:00:00 2001 From: Peter Bartyik Date: Thu, 3 Sep 2020 14:05:36 +0200 Subject: [PATCH] readme update --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6954d5b..3497912 100644 --- a/README.md +++ b/README.md @@ -167,9 +167,11 @@ Add extra patterns to match. This parameter can have multiple instances. For example: ``` -set -g @thumbs-regexp-1 [a-z]+@[a-z]+.com # Match emails -set -g @thumbs-regexp-2 [a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}: # Match MAC addresses -set -g @thumbs-regexp-3 Vlan\\d+ # match Vlan interface on network devices +set -g @thumbs-regexp-1 '[a-z]+@[a-z]+.com' # Match emails +set -g @thumbs-regexp-2 '[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:' # Match MAC addresses +set -g @thumbs-regexp-3 'Vlan\d+' # match Vlan interface on network devices +set -g @thumbs-regexp-4 "Vlan\\d+" # alternative method of defining regexp +set -g @thumbs-regexp-5 Vlan\\d+ # alternative method of defining regexp ``` ### @thumbs-command