
Kevin L. answered 12/20/19
Tutor
4.6
(37)
Linux Admin and developer
One way to do it is to run a commands like this.
<command> > dump.txt 2>&1
This will dump both the stderr and stdout to the file "dump.txt".
dump.txt == file being where the stderr & stdout are being redirected.
2 == stderr
1 == stdout