See following example:

$ echo ${.sh.version}
Version jM 93u 2011-02-08
$
$ [[ foo == foo* ]] && echo matched
matched
$ typeset -p .sh.match
typeset -a .sh.match=(foo)    <== this is fine
$
$ [[ bar == bar ]] && echo matched
matched
$ typeset -p .sh.match
typeset -a .sh.match=(foo)    <== it's not updated
$
_______________________________________________
ast-users mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-users

Reply via email to