перенаправить Stderr на файл linux
command > file.txt # redirect stdout -> file
command &> file.txt # redirect stderr -> file
Gifted Gull
command > file.txt # redirect stdout -> file
command &> file.txt # redirect stderr -> file