Linux-system函数

函数原型:

#include <stdlib.h>

int system(const char *command);

函数介绍:
system()执行通过调用/bin/sh -c命令指定的命令,并在命令完成后返回。在执行com-的过程中,命令SIGCHLD将被阻塞,SIGINT和SIGQUIT将被忽略。

猜你喜欢

转载自blog.csdn.net/xiaozuo666/article/details/79899106