In the Bash command line of Linux computers and servers, how to redirect standard output and standard error output to separate files while also displaying them on the console, keeping the distinction between standard output and standard error output.

something > >(tee -a stdout.log) 2> >(tee -a stderr.log >&2)
linux - How do I write stderr to a file while using โteeโ with a pipe? - Stack Overflow