1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 16:40:24 +02:00

Kris Shannon: 20801: fix missing $ in expression to parse script

This commit is contained in:
Bart Schaefer 2005-02-09 16:26:03 +00:00
parent aaec0ef0ad
commit 8acdfd2981
2 changed files with 6 additions and 1 deletions

View file

@ -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 <space>foo).
# Some people say this might match too many lines...