show/hide this revision's text 2 added 97 characters in body

Hi, I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any suggestions on how to modify the below piece? Thanks!

./aaa.sh | tee ./bbb.out

Update: stdout and stderr should still both be printed to the screen, regardless.

show/hide this revision's text 1

How do I write stderr to a file while using "tee" with a pipe?

Hi, I have the below command line argument which will print the output of aaa.sh to the screen while also writing stdout to bbb.out; however I would also like to write stderr to a file ccc.out. Any suggestions on how to modify the below piece? Thanks!

./aaa.sh | tee ./bbb.out