显示 Unix 命令输出的前 5 行
我试图仅显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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! :)