Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
252ccba948eb9f6372de0ddf6d61654df91ab360
/
.
/
shell
/
msh_test
/
msh-vars
/
star.tests
blob: 5554c4090a6744cf19ac1e40a97e84823164dd22 [
file
] [
log
] [
blame
]
if
test $
# = 0; then
exec
"$THIS_SH"
star
.
tests
1
abc
'd e f'
fi
# 'd e f' should be split into 3 separate args:
for
a
in
$
*;
do
echo
".$a."
;
done
# must produce .1 abc d e f.
for
a
in
"$*"
;
do
echo
".$a."
;
done