mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
Some people like to use ${?} rather than $?, so make sure we support all the special single char vars that use this form. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9 lines
106 B
Text
Executable file
9 lines
106 B
Text
Executable file
URL=http://busybox.net
|
|
|
|
echo $URL
|
|
echo ${URL}_abc
|
|
|
|
true
|
|
false; echo $? ${?}
|
|
true
|
|
{ false; echo $? ${?}; }
|