Multiple choice technology programming languages It is possible to redirect the output of a process to more than one source True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation Using tee command, you can redirect output to multiple files simultaneously. For example: command | tee file1 file2 file3 sends output to all three files and stdout. This is a standard Unix/Linux capability for writing to multiple destinations.