]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/sh/tests/expansion/cmdsubst18.0
MFC r314637: sh: Add some already working tests that exercise new code paths
[FreeBSD/stable/10.git] / bin / sh / tests / expansion / cmdsubst18.0
1 # $FreeBSD$
2
3 x=X
4 unset n
5 r=${x+$(echo a)}${x-$(echo b)}${n+$(echo c)}${n-$(echo d)}$(echo e)
6 [ "$r" = aXde ]