显示 Unix 命令输出的前 5 行

发布于 2025-01-16 18:40:02 字数 309 浏览 0 评论 0原文

我试图仅显示 Unix 命令 xxd file/path.dmg 的前 5 行左右,类似于 r 中的head() 命令。

到目前为止,我只是试图发送垃圾邮件“ctrl + c”以尽快停止执行,但毫不奇怪,我不够快。我知道“pipping”这个词,我想这个方法可能会有用。如果我不尽快找到解决办法,我可能会得关节炎。

I am trying to display only the first 5 or so lines of Unix command xxd file/path.dmg similarly to the head() command in r.

As of now, I am simply trying to spam "ctrl + c" to halt execution as fast as possible, but unsurprisingly I'm not fast enough. I'm aware of the term "pipping" and I'd imagine this method could be useful. I might get arthritis if I don't find a solution soon.

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

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

发布评论

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

评论(1

弥繁 2025-01-23 18:40:02

xxd 文件/path.dmg | head -n [行数] 就可以了。

您还可以使用 xxd file/path.dmg | head -n [行数] > output.txt 将结果保存到文本文件! :)

xxd file/path.dmg | head -n [# of lines] will do the trick.

You can additionally use xxd file/path.dmg | head -n [# of lines] > output.txt to save the results to a text file! :)

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