溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

dup/dup2輸出重定向

發(fā)布時(shí)間:2020-07-22 16:26:15 來(lái)源:網(wǎng)絡(luò) 閱讀:1119 作者:小止1995 欄目:編程語(yǔ)言

函數(shù)原型:
#include
int dup(int oldfd);
int dup2(int oldfd,int newfd);
dup用來(lái)復(fù)制oldfd所指的文件描述符。但復(fù)制成功時(shí)返回最小的尚未被使用的文件描述符。若有錯(cuò)誤則返回-1,錯(cuò)誤代碼存入errno中。返回的新文件描述符和參數(shù)oldfd指向同一個(gè)文件,共享所有的鎖定,讀寫(xiě)指針,和各項(xiàng)權(quán)限或標(biāo)志位。

1.打開(kāi)一個(gè)新文件

2.關(guān)掉標(biāo)準(zhǔn)輸出文件符

3.調(diào)用dup給文件描述符

4.此時(shí)文件描述符變?yōu)?

5.將所要打印數(shù)據(jù)重定向到文件中

dup/dup2輸出重定向

#include<stdio.h>                                                                      
#include<stdlib.h>
#include<errno.h>
#include<string.h>
#include<unistd.h>
#include<fcntl.h>
#include<sys/stat.h>
#define _PATH_FILE_  "./log"
int main()
{
    umask(0);
    int fd=open(_PATH_FILE_,O_CREAT|O_RDWR,0644);
    if(fd<0){
        perror("open");
        return 1;
    }
    close(1);
    int new_fd=dup(fd);
    close(fd);
    int count=0;
    while(count++<100)
    {
        printf("helo world\n");
    }
    fflush(stdout);//must,printf重定向后變?yōu)槿彌_,緩沖區(qū)滿才會(huì)刷新,導(dǎo)致不會(huì)寫(xiě)入文件
    close(new_fd);
    return 0;
}

dup2

#include<stdio.h>                                                              
#include<stdlib.h>
#include<string.h>
#include<fcntl.h>
#include<sys/types.h>
#include<sys/stat.h>
#define _FILE_ "./log"
int main()
{
    umask(0);
    int fd=open(_FILE_,O_CREAT|O_WRONLY,0644);
    if(fd<0){
        perror("open");
        return 1;
    }
    close(1);//isn't necessary
    int ret=dup2(fd,1);
    if(ret<0){
        perror("dup2");
        return 2;
    }
    char buf[1024];
    while(1)
    {
        memset(buf,'\0',sizeof(buf));
        fgets(buf,sizeof(buf)-1,stdin);//stdin是FILE*,0是文件描述符
        if(strncmp(buf,"quit",4)==0)//buf have '\n',you can buf[_s-1]='\0'
            break;
        printf("hello:%s",buf);
    }
    close(fd);
    return 0;
}


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI