bug-bash
[Top][All Lists]
Advanced

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

Re: Internal 'echo' command doesn't handle I/O errors on close file


From: Greg Wooledge
Subject: Re: Internal 'echo' command doesn't handle I/O errors on close file
Date: Mon, 23 Apr 2012 11:37:54 -0400
User-agent: Mutt/1.4.2.3i

On Mon, Apr 23, 2012 at 02:38:47PM +0400, Andrey Zaitsev wrote:
> Strace show that errors from /bin/bash were ignored:
> 
> [user@host ~]# strace echo "bla-bla-bla" > /mnt/fs/out.txt
> execve("/bin/echo", ["echo", "bla-bla-bla"], [/* 22 vars */]) = 0

If you want an strace of the internal echo, you have to do it this
way:

# strace bash -c 'echo "bla-bla-bla" > /mnt/fs/out.txt'

In fact it's the redirection whose failure you really care about.



reply via email to

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