filere1",NULL);         return 0; } reredirect源代码(小写转为大写): #include  #include  #incl....">

当前位置:  技术问答>一个execl的问题 iis7站长之家

用execl实现重定向

    来源: 互联网  发布时间:2016-12-01

    本文导语:  实现重定向: #include #include int main(){         execl("/bin/sh","/bin/sh","./reredirect","1 > filere1",NULL);         return 0; } reredirect源代码(小写转为大写): #include  #include  #include  int main() { int ch; while((ch = getch...

实现重定向:

#include
#include

int main(){

        execl("/bin/sh","/bin/sh","./reredirect","1 > filere1",NULL);
        return 0;
}

reredirect源代码(小写转为大写):
#include 
#include 
#include 
int main()
{
int ch;
while((ch = getchar()) != EOF) {
putchar(toupper(ch));
}
exit(0);
}


这个有什么问题吗?大家帮忙看看!


|
 execl("/bin/sh","/bin/sh","./reredirect","1 > filere1",NULL);
==> execl("/bin/sh","/bin/sh","-c","./reredirect 1> filere1",NULL);

|
#include
#include
#include
int main(){
        int fd = open("filere1", O_WRONLY|O_CREAT, 0660);
        dup2(fd, STDOUT_FILENO);
        execlp("ls","ls",NULL);
        return 0;
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • 我想让vfork后就execl一进程,同时让execl出来的进程之间能相互通信,求助
  • execl的问题
  • execl()函数
  • execl函数问题 fork问题
  • 一个execl的问题
  • execl函数如何使用
  • 关于fork execl...进程名字..
  • linux 下c 编程 一个关于execl的问题 希望请教
  • execle函数的路径参数问题
  • execl函数调用出错?????
  • 如何结束调用execl后启动的程序
  • execl()的调用 !
  • 如果得到 execl 启动的程序的进程PID
  • execle调用mysqldump总提示couldn't find table
  • 请教关于execl()调用的问题
  • execl函数中的cmd用长度限制吗?
  • 菜鸟求教,execl()问题
  • execl execv有必要分成两个函数吗?
  • 子线程中fork再execl的问题
  • 先 fork 子进程然后 execl 另一个可执行程序, 如何得到这个可执行程序结束的返回值?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3