Redirige stderr a archivo Linux

command > file.txt  # redirect stdout -> file
command &> file.txt # redirect stderr -> file
Gifted Gull