我有以下bash脚本
ps aux | awk '{print ""$1"\t"$2""}' | grep someuser | awk '{print $2}' | xargs kill
这应该返回
-bash: kill: (922) - Operation not permitted
但它没有返回任何内容,只是再次向我显示提示。
如何使用stdout
在终端中显示stderr
和xargs
?
更新
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