0

我执行以下命令

bash -c 'comm -12 <(sort vms1.txt) <(sort vms2.txt)'

它给出以下输出

sort: cannot read: vms1.txt: No such file or directory
sort: cannot read: vms2.txt: No such file or directory

如何抑制上述消息?我尝试了stderr重定向方法但没有用

bash -c 'comm -12 <(sort vms1.txt) <(sort vms2.txt) 2>&-'

关键是要抑制错误消息并且不想在标准输出上显示。

4

0 回答 0