ECHO.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ECHO(1)                   Minix Programmer's Manual                    ECHO(1)
  2. NAME
  3.      echo - print the arguments
  4. SYNOPSIS
  5.      echo [-n] argument ...
  6. OPTIONS
  7.      -n   No line feed is output when done
  8. EXAMPLES
  9.      echo Start Phase 1  # 'Start Phase 1' is printed
  10.      echo -n Hello       # 'Hello' is printed without a line feed
  11. DESCRIPTION
  12.      Echo writes its arguments to standard  output.   They  are  separated  by
  13.      blanks  and  terminated  with  a  line  feed  unless -n is present.  This
  14.      command is used mostly in shell scripts.
  15. SEE ALSO
  16.      sh(1).
  17.                                                                              1