📜  将 stderr 重定向到文件 linux - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:11.706000             🧑  作者: Mango

代码示例1
command > file.txt  # redirect stdout -> file
command &> file.txt # redirect stderr -> file