前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >如何让你的程序支持管道输入

如何让你的程序支持管道输入

原创
作者头像
雷大亨
修改2017-12-07 14:39:13
1.6K0
修改2017-12-07 14:39:13
举报
文章被收录于专栏:遊俠扎彪

什么叫支持管道输入

cmd1 | cmd2 | cmd3

管道符号 | 是怎么做的输入输出

其实很简单,管道是通过stdin和stdout来传给程序的。

说白了,管道符号|就是把cmd1的stdout弄成cm2的stdin

怎么支持管道输入

那就更简单了,支持从stdin读取内容,就支持管道输入了;

同样,支持往stdout输出内容,也就支持管道输出了。

能举个例子吗

代码语言:txt
复制
#include<iostream>
using namespace std;

int main(int argc, char \*argv[])
{
    string s;

    while (cin >> s)
        cout << "hello " << s << endl;

    return 0;
}

可以演示一下效果吗

代码语言:txt
复制
[root@CentOS ~]# ls redis-3.0.7 | ./a.out 
hello 00-RELEASENOTES
hello BUGS
hello CONTRIBUTING
hello COPYING
hello deps
hello INSTALL
hello Makefile
hello MANIFESTO
hello README
hello redis.conf
hello runtest
hello runtest-cluster
hello runtest-sentinel
hello sentinel.conf
hello src
hello tests
hello utils

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 什么叫支持管道输入
  • 管道符号 | 是怎么做的输入输出
  • 怎么支持管道输入
  • 能举个例子吗
  • 可以演示一下效果吗
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档