Hi!

----

Is there a way to "merge" two compound variables ?

For example I have ...
$ typeset -C c1=( aa="hello" )
$ typeset -C c2=( bb="world" )

... and the result should be:
$ print "${res}"
(
    aa="hello"
    bb="world"
)

... is there a way to do that ?

Originally I assumed I could use the "+=" operator somehow (e.g. $
res+=c1 ; res+=c2 #) to append compound variable elements but ít seems
this doesn't work... ;-(

----

Bye,
Roland

-- 
  __ .  . __
 (o.\ \/ /.o) [EMAIL PROTECTED]
  \__\/\/__/  MPEG specialist, C&&JAVA&&Sun&&Unix programmer
  /O /==\ O\  TEL +49 641 3992797
 (;O/ \/ \O;)
_______________________________________________
ast-developers mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-developers

Reply via email to