summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/expansion/cmdsubst9.0
blob: 8bbf2b992974966441ed675f479c5920cf1cddd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# $FreeBSD: head/bin/sh/tests/expansion/cmdsubst9.0 216819 2010-12-30 15:04:59Z jilles $

set -e

cd /
dummy=$(cd /bin)
[ "$(pwd)" = / ]

v=1
dummy=$(eval v=2)
[ "$v" = 1 ]