As the title, the results from "gsutil cp" doesn't redirect to stdout, it always redirect to stderr.
As an example : gsutil cp existed_file.txt . > >(tee -a out.log) 2> >(tee -a error.log >&2)
.
In above command, out.log is empty, and error.log has a successful copy result.
Its behavior is wrong, because if above command is correct, its output should return in out.log, not in error.log.
How can i fix it ?