Sign in
nest-open-source
/
nest-learning-thermostat
/
5.0.2
/
busybox
/
refs/heads/master
/
.
/
busybox-1.19.3
/
shell
/
hush_test
/
hush-parsing
/
starquoted.tests
blob: 2fe49b1cd3dfa925c6e6940e0eb80658ffccce8c [
file
] [
log
] [
blame
] [
edit
]
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