笔记1-2: 将标准输入复制到标准输出

将标准输入复制到标准输出:

 

#include <apue.h>

#include <unistd.h>

#define BUFFSIZE  4096

int main(int argc, char ** argv)

{

    int  n;

    char buf[BUFFSIZE];

    while ((n = read(STDIN_FILENO, buf, BUFFSIZE)) > 0)

       if (write(STDOUT_FILENO, buf, n) != n)

           err_sys("write error\n");

    if (n < 0)

       err_sys("read error\n");

    return 0;

}

 

函数openreadwritelseekclose等提供了不用缓冲的I/O。这些函数都是使用文件描述符。文件描述符是一个非负整数,内核用它来标识进程正在访问的文件。

两个常量STDIN_FILENOSTDOUT_FILENO<unistd.h>头文件中定义,它们指定了标准输入与标准输出的文件描述符。它们的典型值分别为01.

         若以下面方式运行命令:

    ./a.out < infile > outfile

那么名为infile的文件的内容会复制到名为outfile的文件中。

 

下面程序是以标准I/O的方式实现相同功能:

 

#include <apue.h>

#include <stdio.h>

int main(int argc, char ** argv)

{

    int  c;

    while ((c = getc(stdin)) != EOF)

       if (putc(c, stdout) == EOF)

           err_sys("write error\n");

    if (ferror(stdin))

       err_sys("read error\n");

    return 0;

}

 

 

 

转载于:https://www.cnblogs.com/gradliang/archive/2013/05/21/3788973.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值