From 8acdfd29816b8c7c053e0c2509105450ddb4709c Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Wed, 9 Feb 2005 16:26:03 +0000 Subject: Kris Shannon: 20801: fix missing $ in expression to parse script --- Completion/Unix/Command/_init_d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Completion/Unix/Command/_init_d') diff --git a/Completion/Unix/Command/_init_d b/Completion/Unix/Command/_init_d index f081244af..f439e8007 100644 --- a/Completion/Unix/Command/_init_d +++ b/Completion/Unix/Command/_init_d @@ -15,7 +15,7 @@ script=$words[1] what='(st(art|op|atus)|(force-|)re(start|load)|debug_(up|down)|dump(|_stats)|add|delete|clean|list)' read -u0 -k2 magic < $script && [[ $magic = '#!' ]] && - cmds=( ${${(j:|:s:|:)${(M)${(f)"$(< $script)"}:#[[:blank:]]#(\'|)${~what}(\|{~what})#(\'|)\)}}//[^a-z_]} ) + cmds=( ${${(j:|:s:|:)${(M)${(f)"$(< $script)"}:#[[:blank:]]#(\'|)${~what}(\|${~what})#(\'|)\)}}//[^a-z_]} ) # This would be the pattern to use every line of the form foo). # Some people say this might match too many lines... -- cgit v1.2.3