从 unix shell 提示符中仅选择所需的行

发布于 2024-10-17 05:08:54 字数 92 浏览 0 评论 0原文

假设我正在跑步
$: ps au
在 shell 提示符中,想要选择其中第五个条目的第二个字段,无论它是哪个进程。我该怎么做?

Lets say I am running
$: ps au
in a shell prompt and want to select 2nd field of 5th entry in that, no matter which process it is. How do I do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

↙温凉少女 2024-10-24 05:08:55

用 awk 。

awk 'NR==6 { print $2 }'

第 6 条记录,因为需要跳过标头。

With awk.

awk 'NR==6 { print $2 }'

The 6th record because you need to skip the header.

笑脸一如从前 2024-10-24 05:08:55

如果您不想使用 awk 或等效的 perlruby 命令,您还可以使用更多低级工具:

ps au | head -6 | tail -1 | cut -d ' ' -f 2

If you don't want to use awk or the equivalent perl or ruby commands, you can also use more low-level tools:

ps au | head -6 | tail -1 | cut -d ' ' -f 2
半透明的墙 2024-10-24 05:08:55

在“ps au”输出中,第二个字段是进程 ID;你可以通过告诉 ps 你需要什么来直接提取它:

ps a -o pid=

然后你只需要输出第五行:

ps a -o pid= | sed '5!d'

In "ps au" output, second field is the process ID; you can extract it directly by telling to ps what you need:

ps a -o pid=

Then you just need to output the fifth line:

ps a -o pid= | sed '5!d'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文