> '$output1' &&
echo "select path $select.fields.path" >> '$output1' &&
## direct access to the select parameter gives a comma sepated list of the `value`s
echo "select_mult $select_mult" >> '$output1'
## looping over the select parameter gives the `value`s
#for i, o in enumerate($select_mult)
&& echo "select_mult $i $o" >> '$output1'
#end for
## acessing fields gives comma separated properties
## and in case nothing is selected empty string
&& echo "select_mult real_value $select_mult.fields.real_value" >> '$output1'
&& echo "select_mult dbkey $select_mult.fields.dbkey" >> '$output1'
&& echo "select_mult name $select_mult.fields.name" >> '$output1'
&& echo "select_mult path $select_mult.fields.path" >> '$output1'
&& echo "select_mult value $select_mult.fields.value" >> '$output1'
]]>