Windows 上的 shell 管道和 cat 命令...
对于大多数 Unix shell,我们可以使用管道和 cat 命令的功能来连接非文本数据,如下例所示:
a_command_with_binary_output | cat - this_is_a_binary_file > output_file
在 Windows 中,上述命令的等效项是什么?我仅针对 command.com 或 cmd.exe。请不要使用 powershell。
With most Unix shells, we can use the powers of pipe and the cat command to concatenate non-text data like the following example:
a_command_with_binary_output | cat - this_is_a_binary_file > output_file
What is the equivalent of the above command in Windows? I'm only targeting command.com or cmd.exe. No powershell please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以腾出临时空间,那就好:
但是帮自己一个忙,获取 Win32 的 coreutils 。其中包含
cat
和一堆其他方便的实用程序。Well if you can spare the temporary space:
But do yourself a favor and get coreutils for Win32. That contains
cat
and a bunch of other handy utilities.