How to construct shell redirection on command line
        Posted  
        
            by WilliamKF
        on Super User
        
        See other posts from Super User
        
            or by WilliamKF
        
        
        
        Published on 2010-06-09T04:13:54Z
        Indexed on 
            2010/06/09
            4:23 UTC
        
        
        Read the original article
        Hit count: 383
        
Consider the following command in Unix:
echo 0123456789 | cat >/tmp/foo &> /tmp/bar
The echo is sent to /tmp/bar.
However, what I really want is to redirect the stdout and stderr output of the cat command and not take its input.
What is the proper syntax to do this?
© Super User or respective owner