Irek Szczesniak
2013-08-26 11:57:53 UTC
namespace question: Shouldn't the example below create the variable
'ns_a2' within the namespace a.b?
ksh -c 'namespace a.b { typeset -a ns_a1=(4 5 6 ) ; fc() { typeset -a
ns_a2=( 7 8 9 ) ; } ; } ; typeset -a a=( 1 2 3 ); .a.b.fc ; typeset
-a'
a=(1 2 3)
ns_a2=(7 8 9)
Irek
'ns_a2' within the namespace a.b?
ksh -c 'namespace a.b { typeset -a ns_a1=(4 5 6 ) ; fc() { typeset -a
ns_a2=( 7 8 9 ) ; } ; } ; typeset -a a=( 1 2 3 ); .a.b.fc ; typeset
-a'
a=(1 2 3)
ns_a2=(7 8 9)
Irek