msh: create testsuite (based on hush one)

hush: add TODO (doesn't know ":" command)
This commit is contained in:
Denis Vlasenko
2008-03-02 19:57:53 +00:00
parent 444639cc21
commit a43dba76ea
42 changed files with 318 additions and 12 deletions

View File

@ -0,0 +1,15 @@
if test $# = 0; then
exec "$THIS_SH" "$0" abc "d e"
fi
space=' '
echo .$space.
a=$*
echo .$a.
a=$@
echo .$a.
a="$*"
echo .$a.
a="$@"
echo .$a.