Sign in
nest-open-source
/
nest-learning-thermostat
/
5.1
/
busybox
/
4e78bdb482363ce3d708250ad80a9b303c48ade7
/
.
/
busybox-1.19.3
/
shell
/
msh_test
/
msh-bugs
/
starquoted.tests
blob: 2fe49b1cd3dfa925c6e6940e0eb80658ffccce8c [
file
] [
log
] [
blame
]
if
test $
# = 0; then
exec
"$THIS_SH"
"$0"
1
abc
'd e f'
fi
for
a
in
"$*"
;
do
echo
".$a."
;
done
for
a
in
"$@"
;
do
echo
".$a."
;
done
for
a
in
"-$*-"
;
do
echo
".$a."
;
done
for
a
in
"-$@-"
;
do
echo
".$a."
;
done