Rediriger Stderr vers le fichier Linux

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