xref: /freebsd/bin/sh/tests/expansion/cmdsubst19.0 (revision a64729f5077d77e13b9497cb33ecb3c82e606ee8)
1
2b=200 c=30 d=5 x=4
3r=$(echo a)$(($(echo b) + ${x+$(echo c)} + ${x-$(echo d)}))$(echo e)
4[ "$r" = a234e ]
5