This article explains it: https://linuxize.com/post/bash-redirect-stderr-stdout/
TL;DR add 2>&1
to the end of the command (meaning “take stderr output and append it to stdout instead”).
hjh
This article explains it: https://linuxize.com/post/bash-redirect-stderr-stdout/
TL;DR add 2>&1
to the end of the command (meaning “take stderr output and append it to stdout instead”).
hjh
This works great. Thank you!