aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var.tests
blob: b0637ea6b71647f0aea747a424dce2de63428618 (plain)
1
2
3
4
5
6
7
8
9
10
URL=http://busybox.net

echo $URL
echo ${URL}_abc

true
false; echo $?
true
# BUG: prints 0, must be 1
{ false; echo $?; }