From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH] config: improve config_get_id_from_config and config_get_hook_from_config Date: Wed, 19 Jul 2017 10:23:20 +0200 Message-ID: <1500452600-6095-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6528238781783041396==" List-Id: --===============6528238781783041396== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/functions/functions.config | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/functions/functions.config b/src/functions/functions.config index e11a1c2..6a148c7 100644 --- a/src/functions/functions.config +++ b/src/functions/functions.config @@ -58,8 +58,7 @@ config_get_id_from_config() { assert [ $# -eq 1 ] local config=${1} - local hook=$(config_get_hook_from_config ${config}) - echo "${config//"${hook}."/}" + echo "${config##*.}" } @@ -69,5 +68,5 @@ config_get_hook_from_config() { assert [ $# -eq 1 ] local config=${1} - echo "${config//.*[[:digit:]]/}" + echo "${config%%.*[[:digit:]]}" } -- 2.6.3 --===============6528238781783041396==--