%%s 0/0/0
%%d D 1.1 25-Mar-82 12:04:29 v1.1 1 0
%%c Version 1.1 is the Spring 1982 Distribution of the LBL/Hughes release
%%c of the Software Tools Virtual Operating System software and documentation.
%%T
%%I 1
#-h- echo.r           389  asc  25-mar-82 07:40:20  v1.1 (sw-tools v1.1)
#-h- main             316  asc  25-mar-82 07:40:12  v1.1 (sw-tools v1.1)
 ## echo - echo command line arguments
 DRIVER(echo)

 integer getarg, i
 character buf(MAXLINE)

 
 call query("usage:  echo [arg] ...")
 for (i=1; getarg(i, buf, MAXLINE) != EOF; i=i+1)
	{
	if (i > 1)
	    call putch(' ', STDOUT)
	call putlin (buf, STDOUT)
	}
 if (i != 1)
	call putch ('@n', STDOUT)
 DRETURN
 end
#-h- echo.fmt         313  asc  25-mar-82 07:40:20  v1.1 (sw-tools v1.1)
.so ~bin/manhdr
.hd Echo (1) 7-Jul-78
echo command line arguments 
.sy
echo [arg] ... 
.ds
Echo writes its arguments in order as a line on the standard output 
file. 
It is useful for producing messages and diagnostics in command 
files. 
.fl
none 
.sa
The Unix command "echo"
.di
none 
.au
Debbie Scherrer 
.br 
%%E 1