bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bad file descriptor with pipeline


From: Hédy GIRAUDEAU
Subject: Re: Bad file descriptor with pipeline
Date: Tue, 12 Apr 2016 06:27:25 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2

Le 12/04/2016 04:00, Chet Ramey a écrit :
> On 4/11/16 5:39 PM, Hédy GIRAUDEAU wrote:
>> Hi,
>> If i use : `strace bash -c "echo qsd | cat" 2>&1 | grep "close"`
>> I get systematically :
>>
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(3)                                = 0
>> close(4)                                = 0
>> close(4)                                = -1 EBADF (Bad file descriptor)
>> close(3)                                = 0
>> close(3)                                = -1 EBADF (Bad file descriptor)
>>
>>
>> I don't know if it's a bug or not. This error happens everytime a
>> pipeline is used.
> It's not a bug, it's bash making sure pipe file descriptors are closed.
>

Oh ok.
That's a odd way to make sure that a file descriptor is closed but at
least it works.
Sorry for disturbing.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]