简单程序:
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netdb.h>
int main(int argc, char **argv)
{
int ret = rexec((char**) 0, "", "", "", 0);
return 0;
}
编译:
$ g++ -o rexec -D_XOPEN_SOURCE_EXTENDED rexec.cpp
rexec.cpp: In function 'int main(int, char**)':
rexec.cpp:10:49: error: 'rexec' was not declared in this scope
答案 0 :(得分:0)
POSIX.1-2001中的这些功能不是。首先是rexec()函数 出现在4.2BSD中,并出现在BSD,Solaris等等 其他系统。 rexec_af()函数更新,更少 普遍。
资料来源:&#34; man rexec&#34;
答案 1 :(得分:0)
find /usr/local -type f -print -exec grep rexec {} \; # no rgrep/grep -R on HP-UX
HP-UX系统的任何标头中都没有rexec功能。
HP-UX没有。您必须在popen
应用程序上执行rexec(1)
来自己实现它,我猜(不是太难)。或者,停止使用rexec!