0901假设存在一个可以从标准输入读入字母并且将其从小写转换为大写输出的可执行程序upcase

发布时间:2020-07-02 07:40:13 作者:银河星君
来源:网络 阅读:434

/*

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

#define BUFSIZE PIPE_BUF

int main(int argc, char argv[])
{
int n,fd[2];
pid_t pid;
char buffer[BUFSIZE+1];
FILE
fp;
if(argc<=1)
{
printf("usage:%s <pathname>\n",argv[0]);
exit(1);
}
//open txt file
if((fp=fopen(argv[1],"r"))==NULL)
{
printf("Can't open %s\n",argv[1]);
exit(1);
}
//create pipe
if(pipe(fd)<0)
{
printf("pipe failed!\n");
exit(1);
}
//create son process
if((pid=fork())<0)
{
printf("fork failed!\n");
exit(1);
}
else if(pid>0)// father process
{
close(fd[0]);
while(fgets(buffer,BUFSIZE,fp)!=NULL)
{
n=strlen(buffer);
//write data to pipe
if(write(fd[1],buffer,n)!=n)
{
printf("write error to pipe.\n");
exit(1);
}
}
if(ferror(fp))
{
printf("fgets error.\n");
exit(1);
}
close(fd[1]);
if(waitpid(pid,NULL,0)<0)
{
printf("waitpid error!\n");
exit(1);
}
exit(0);
}
else
{
close(fd[1]);
if(fd[0]!=STDIN_FILENO)
{
//copy pipe to stdin
if(dup2(fd[0],STDIN_FILENO)!=STDIN_FILENO)
{
printf("dup2 error to stdin!\n");
exit(1);
}
close(fd[0]);
}
//run user program
if(execl("upcase","upcase",(char *)0)<0)
{
printf("execl error for upcase.\n");
exit(1);
}
exit(0);
}
//return 0;
}

推荐阅读:
  1. 把键盘的大写字母改成小写字母,小写字母改成大写字母,数字不做处理
  2. 0804使用信号,读入终端输入的字符,并将其中的小写字母转换成大写字母后输出

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

linux c pipe函数 执行程序

上一篇:红米手机Pro获得ROOT权限的步骤

下一篇:如何实现python的mysql连接池并加入缓存过期

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》