Redirecting stderr

Chester Wyke June 19, 2023 Updated: April 15, 2025 #debian

Source: https://askubuntu.com/questions/625224/how-to-redirect-stderr-to-a-file

Redirect both stdout and stderr

NB: Only supported in some shells including bash

command &> out.txt

Redirect stderr to stdout

command >out 2>&1

Redirect stderr to separate file

command > out.txt 2>error.txt