每天学点Linux--(Linux下execl函数的使用)

execl()函数声明如下:
extern int execl(_const char *_path,const char *_argv[],...,NULL)
简单解释:函数execl()返回值定义为整形,如果执行成功将不返回!执行失败返回-1。
                  参数列表中char *_path为所要执行的文件的绝对路径,从第二个参数argv开始为执行新的文件所需的参数,最后一个参数必须是控指针(我为了简便用NULL代替)。
举个例子:
一 先来个新程序不带参数的简单例子:
//execl.c
#include<stdio.h>
#include<unistd.h>
int main(int argc,char *argv[])
{
    int test;
   if((test=execl("/home/crosslandy/Linux/exec/hello",argv[1],NULL))==-1)
        printf("error\n");
    return 0;
}
//hello.c
#include<stdio.h>
int main(int argc,char *argv[])
{
    int i;
    printf("hello world\n");
    for(i=0;i<argc;i++)
    {
        printf("parameter %d is:%s\n",i,argv[i]);
    }
    return 0;
}
解释一下:
execl.c文件:
 1定义的整形test用来判断execl是否执行成功,如果失败返回-1输出error;
2第一个参数"/home/crosslandy/Linux/exec/hello"为我所要执行的文件的绝对路径(记住在绝对路径后要写上所要执行的文件的文件名);
3第二个参数为所要执行的新文件的第一个参数,本例子即为./hello
4第三个参数为空指针(因为hello这个程序不需要参数所以直接写最后一个参数空指针);  
hello.c文件:
 地球人都知道的hello world。只不过在后面我加上了执行该文件是在终端所输入的参数argv[]并对其进行输出。
 在终端执行的时候结果如下:
[crosslandy@localhost exec]$ ./execl ./hello 
hello world
parameter 0 is:./hello
二 再来个带参数的例子:
//execl.c
#include<stdio.h>
#include<unistd.h>
int main(int argc,char *argv[])
{
    int test;
    if((test=execl("/home/crosslandy/Linux/exec/hello",argv[1],argv[2],NULL))==-1)
        printf("error\n");
    return 0;
}
//hello.c
#include<stdio.h>
int main(int argc,char *argv[])
{
    int i;
    printf("hello world\n");
    for(i=0;i<argc;i++)
    {
        printf("parameter %d is:%s\n",i,argv[i]);
    }
    return 0;
}
解释一下:
新的例子里我只对execl.c进行了小修改即红色部分argv[2],表示在调用execl函数执行新文件时多添加了一个参数。
 在终端执行的时候结果如下:
[crosslandy@localhost exec]$ ./execl ./hello first_parameter
hello world
parameter 0 is:./hello
parameter 1 is:first_parameter
  • 4
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值