SYSTEM.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. SYSTEM(3)                 Minix Programmer's Manual                  SYSTEM(3)
  2. NAME
  3.      system - issue a shell command
  4. SYNOPSIS
  5.      #include <stdlib.h>
  6.      int system(const char *string)
  7. DESCRIPTION
  8.      System causes the string to be given to sh(1) as input as if  the  string
  9.      had  been  typed  as  a command at a terminal.  The current process waits
  10.      until the shell has completed, then returns the exit status of the shell.
  11. SEE ALSO
  12.      sh(1), popen(3), execve(2), wait(2).
  13. DIAGNOSTICS
  14.      Exit status 127 indicates the shell couldn't be executed.
  15.                                 May 15, 1985                                 1