1. 命令 >> 文件 2>&1
例子:
ls >> abc 2》&1
则abc文件中就是ls 的输出,
lll >> abc 2>&1
则abc 中也会有"
bash: lll: command not found..."的输出。
2. 命令 &>> 文件