#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#define BUFSIZE 200
int main()
{
FILE *read_fp;
char buffer[BUFSIZE+];/*用于存放读取的内容*/
int chars_read;
memset(buffer,'\0',sizeof(buffer));
read_fp=popen("uname -a","r");//用于显示内核版本 及现在时间
/*返回的是文件指针,因此-文件指针是要定义的*/
if(read_fp != NULL)
{
chars_read=fread(buffer,sizeof(char),BUFSIZE,read_fp);//返回读取字符的个数,错误则为-1
/*并读取传回的内容是什么*/
if(chars_read > )
{
printf("Output was:-\n%s\n",buffer);
} pclose(read_fp);
exit(EXIT_SUCCESS);
}
exit(EXIT_FAILURE);
}
/*因些,使用popen到少要定义:
文件指针,
字符串
*/
#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#define BUFSIZE 50
int main()
{
FILE *read_fp;
char buffer[BUFSIZE+];/*用于存放读取的内容*/
int chars_read;
memset(buffer,'\0',sizeof(buffer));
read_fp=popen("ps ax","r");//用于显示内核版本 及现在时间
/*返回的是文件指针,因此-文件指针是要定义的*/
if(read_fp != NULL)
{
while(chars_read > )
{ //返回读取字符的个数,错误则为-1
/*并读取传回的内容是什么*/
chars_read=fread(buffer,sizeof(char),BUFSIZE,read_fp);
buffer[chars_read-]='\0';
printf("Reading %d:-\n %s \n",BUFSIZE,buffer); }
pclose(read_fp);
exit(EXIT_SUCCESS);
}
exit(EXIT_FAILURE);
return ;
}
/*因些,使用popen到少要定义:
文件指针,
字符串
*/
#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#define BUFSIZE 50
int main()
{
FILE *read_fp;
char buffer[BUFSIZE+];/*用于存放读取的内容*/
int chars_read;
memset(buffer,'\0',sizeof(buffer));
read_fp=popen("cat 13-3-*.cpp | wc -l","r");//用于显示内核版本 及现在时间
/*返回的是文件指针,因此-文件指针是要定义的*/
if(read_fp != NULL)
{
while(chars_read > )
{ //返回读取字符的个数,错误则为-1
/*并读取传回的内容是什么*/
chars_read=fread(buffer,sizeof(char),BUFSIZE,read_fp);
buffer[chars_read-]='\0';
printf("Reading %d:-\n %s \n",BUFSIZE,buffer); }
pclose(read_fp);
exit(EXIT_SUCCESS);
}
exit(EXIT_FAILURE);
return ;
}
/*因些,使用popen到少要定义:
文件指针,
字符串
*/
#include<unistd.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h> #define Buffer 100 int main()
{
FILE *write_fp;
char buffer[Buffer + ];
//把格式化的数据写入某个字符串缓冲区。
//返回值:字符串长度(strlen)
sprintf(buffer,"Once upon a time, there was...\n");
//********格式化输出文件中的数据***********///
//-c:等价于-t c,选择ASCII码字符或者是转义字符
write_fp=popen("od -c","w");
if(write_fp != NULL)
{
fwrite(buffer,sizeof(char),strlen(buffer),write_fp);
pclose(write_fp);
exit(EXIT_SUCCESS);
}
exit(EXIT_FAILURE);
}
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h> int main()
{
int data_processed;
int file_pies[];
const char some_data[]="";
char buffer[BUFSIZ+]; memset(buffer,'\0',sizeof(buffer)); if(pipe(file_pies)==)
{
data_processed=write(file_pies[],some_data,strlen(some_data));
printf("Wrote %d bytes\n",data_processed);
data_processed=read(file_pies[],buffer,BUFSIZ);
printf("Read %d bytes: %s\n",data_processed,buffer);
exit(EXIT_SUCCESS);
}
exit(EXIT_FAILURE);
}

13-(1-4)进程管道关于popen(-r-w)及pipe的程序使用实例的更多相关文章

  1. Python和其他进程的管道通信方式--popen和popen2的比较

    目前有一个查询程序 get_user_id 是用C写的,python需要调用这个程序:使用 get_user_id  "用户名" 可以得到输出: "ID0002451&q ...

  2. Linux进程间通信(三):匿名管道 popen()、pclose()、pipe()、close()、dup()、dup2()

    在前面,介绍了一种进程间的通信方式:使用信号,我们创建通知事件,并通过它引起响应,但传递的信息只是一个信号值.这里将介绍另一种进程间通信的方式——匿名管道,通过它进程间可以交换更多有用的数据. 一.什 ...

  3. 管道与popen函数与重定向

    转自:http://www.tldp.org/LDP/lpg/node12.html Pipes the Easy Way! LIBRARY FUNCTION: popen(); PROTOTYPE: ...

  4. 《Unix 网络编程》13:守护进程和 inetd 超级服务器

    守护进程和 inetd 超级服务器 ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ...

  5. APUE读书笔记-第13章-守护进程

    第13章 守护进程 13.1 引言 *守护进程也称精灵进程(daemon)是生存期较长的一种进程.它们常常在系统自举时启动,仅在系统关闭时才终止.因为它们没有控制终端,所以说它们是在后台运行的.UNI ...

  6. 13.2、进程的通信:Queue、Pipe、

    内容相关: 概念:进程的通信 Queue:创建与使用 Pipe:创建与使用 进程通信的概念 进程的资源空间是相互独立的,一般而言是不能相互访问的.但很多情况下进程间需要互相通信,来完成系统的某项功能. ...

  7. UNP第13章——守护进程

    1. 守护进程的启动方法 (1)系统初始化脚本启动,在系统启动阶段,按照如/etc目录或/etc/rc开头的目录中的某些脚本启动,这些守护进程一开始就有超级用户权限.如inetd,cron,Web服务 ...

  8. SmartSql = Dapper + MyBatis + Cache(Memory | Redis) + ZooKeeper + R/W Splitting + ......

    SmartSql Why 拥抱 跨平台 DotNet Core,是时候了. 高性能.高生产力,超轻量级的ORM.156kb (Dapper:168kb) So SmartSql TargetFrame ...

  9. os.popen('python hello_out.py')中Python程序执行时默认的当前路径为MS-DOS CMD的默认路径

    >>> import os >>> os.getcwd() 'D:\\pythonCode\\pp4e' >>> os.chdir('Stream ...

随机推荐

  1. 第一章:介绍Django

    django简单来说就是一个Web开发框架.Web框架为应用程序提供了一套程序框架,这样你可以专注于编写清晰.易维护的代码,而无需从头做起. models.py文件主要用一个Python类来描述数据表 ...

  2. C# List 转Datatable

    最近在做Excel导出,看到了这个方法,虽不是自己写的,但值得收藏,但是忘记从那摘抄的,没写原文作者看到望见谅! #region 导出Excel /// <summary> /// lis ...

  3. python概要

    python与r语言接口Rpy,统计 科学计算,数值拟合:numpy,scipy 可视化2d:matplotlib,Pylab 可视化3d:mayaviz 复杂网络:networkx 交互终端: bs ...

  4. XMPP--- error : linker command failed with exit code 1

    error: linker command failed with exit code 1 (use -v to see invocation) 错误原因:libidn.a文件没添加上去 解决方法:l ...

  5. hdu4513之manacher算法

    吉哥系列故事——完美队形II Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others) T ...

  6. gpexpand error:Do not have enough valid segments to start the array.

    gpstart error: Do not have enough valid segments to start the array. 这个时候需要检查一下shared_buffers设置改小点,就 ...

  7. grub2的/etc/default/grub文件详解

    # If you change this file, run 'update-grub' afterwards to update# /boot/grub/grub.cfg.GRUB_DEFAULT= ...

  8. 10994 - Simple Addition(规律)

    Problem E Simple Addition Input: Standard Input Output: Standard Output Let’s define a simple recurs ...

  9. web Listener

    在web应用内部会不断地发生各种事件例如,web应用被启动,web应用停止,用户session开始,用户session 结束,用户请求到达,通常这些事件对开发者而言是透明的.实际上ServletAPI ...

  10. stdcall、cdecl、fastcall、thiscall 、naked call的汇编详解

    函数调用规范   当高级语言函数被编译成机器码时,有一个问题就必须解决:因为CPU没有办法知道一个函数调用需要多少个.什么样的参数.即计算机不知道怎么给这个函数传递参数,传递参数的工作必须由函数调用者 ...