Contents

Develop
2003.04.23 10:57

[c] 프로세스간의 통신(파이프)

Views 6915 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
[ 프로세스간 통신 파이프 popen ( ) ]


1. 형식
        ------------------------------------------------------------
        File *filePointer =  popen ( char *command, char *type )
        int pclose ( File *filePointer )
        ------------------------------------------------------------
        시스템 명령어를 실행하고, 프로세스와의 통신에 사용할 수 있는 파일포인터를 반환한다.

2. 예제(불완전)
        ------------------------------------------------------------
        #include <stdio.h>
        #define BUFSIZE 256
        
        int main ( int argc, char **argv )
        {
                char buf [BUFSIZE];
                FILE *fp;
                fp = popen("ls > /dev/null", "r" );
                fgets ( buf, BUFSIZE, fp );
                fprintf ( stdout, "%s", buf );
                pclose ( fp );
        } 
        ------------------------------------------------------------ 


?

List of Articles
No. Category Subject Author Date Views
813 System/OS [linux] 시스템 데몬 종류와 설명 hooni 2013.04.23 11222
812 System/OS [doc] TCP/IP 강의 자료 (html) file hooni 2013.04.23 11248
811 Develop [web] 웹 연동 프로그램 모음.. file hooni 2013.04.23 6983
810 Etc [flash] 맘에 드는 파이차트 file hooni 2013.04.23 12626
809 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9180
808 System/OS NAT와 DHCP에 대한 간단한 설명 hooni 2013.04.23 18405
807 System/OS [router] 설정과 기본 명령어들 모음 hooni 2013.04.23 15756
806 System/OS [windows] 종료, 재시작, 로그아웃 아이콘 만들기 hooni 2013.04.23 18206
805 System/OS [windows] 인터넷 익스플로러(IE) 도구모음 표시줄에 아이콘 추가 file hooni 2013.04.23 18288
804 System/OS [doc] 네트워크 장비와 라우터 설정 방법 발표 자료 file hooni 2013.04.23 14557
803 System/OS [doc] 피쳐셀렉션(feature selection using..) 발표 자료 file hooni 2013.04.23 12614
802 Etc [php] 싸이월드 이미지 외부 링크 하기(php) hooni 2013.04.23 16420
Board Pagination Prev 1 ... 26 27 28 29 30 31 32 33 34 35 ... 98 Next
/ 98