aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/expansion/cmdsubst19.0
blob: ae6619a775f732984cda3f76860a9b107b4aadf7 (plain) (blame)
1
2
3
4
5
# $FreeBSD$

b=200 c=30 d=5 x=4
r=$(echo a)$(($(echo b) + ${x+$(echo c)} + ${x-$(echo d)}))$(echo e)
[ "$r" = a234e ]