#include <stdio.h> #include <unistd.h> #include <stdlib.h> int main(int argc,char *argv[]) { pid_t pid; //进程标识符 printf("**This is a test for exec series fun**\n"); //打印提示符 if(fork()==0) //创建一个子进程 { execl("/bin/date","/bin/date",(char*)0); //使用execl函数调用date命令 exit(0); //退出 } else { sleep(1); //主进程休眠 execl("/bin/time","/bin/time",(char*)0); } exit(0); }
本文标题:[Linux进程]使用execl函数调用date命令
URL分享:https://www.cdcxhl.com/article6/ihehig.html
成都网站建设公司_创新互联,为您提供网站维护、移动网站建设、自适应网站、App开发、网站内链、手机网站建设
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联