对于大多数Unix shell,我们可以使用管道权限和cat命令来连接非文本数据,如下例所示:
a_command_with_binary_output | cat - this_is_a_binary_file > output_file
Windows中上述命令的等效内容是什么?我只针对command.com或cmd.exe。请不要使用powershell。
答案 0 :(得分:1)
好吧,如果你可以节省临时空间:
a_command_with_binary_output > temp_file
copy /B temp_file + this_is_a_binary_file output_file
del temp_file
但请帮自己一个忙,得到coreutils for Win32。它包含cat
和一堆其他方便的实用程序。