home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
SHELLS
/
shell.lzh
/
SCRIPTS
/
contbreak
< prev
next >
Wrap
Text File
|
1994-09-03
|
324b
|
24 lines
#
echo Will display arg1 to arg4
for i in arg1 arg2 noarg arg3 arg4
do
if [ $i = noarg ]
then
continue
fi
echo Argument $i
done
echo
#
echo Will display arg1 and arg2 and finish after lastarg
for i in arg1 arg2 lastarg arg3 arg4 arg5 arg6
do
echo Argument $i
if [ $i = lastarg ]
then
break
fi
done