xargs不输出stdout或stderr

时间:2016-11-20 13:41:27

标签: bash

我有以下bash脚本

ps aux | awk '{print ""$1"\t"$2""}' | grep someuser | awk '{print $2}' | xargs kill

这应该返回

-bash: kill: (922) - Operation not permitted

但它没有返回任何内容,只是再次向我显示提示。

如何使用stdout在终端中显示stderrxargs

更新

vagrant@homestead:~/Code/q4$ ps aux | awk '{print ""$1"\t"$2""}' | grep vagrant | awk '{print $2}'
1030
1460
1470
1471
5036
5037
5058
5059
5542
5543
5544
5545

0 个答案:

没有答案