Linux:从管道将命名文件添加到 zip 存档
是否可以使用类似以下内容:
command.exe |邮编>> archive.zip
命令2.exe | 邮编>> archive.zip
...最终会在一个 zip 存档中生成两个命名文件。 如果可能的话,这种方式会比使用临时文件更整洁。
Is it possible to use something like:
command.exe | zip >> archive.zip
command2.exe | zip >> archive.zip
...and end up with two named files inside one zip archive.
This way, if at all possible, would be neater than having temp files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在新目录中创建两个命名管道(使用 mkfifo),将命令的输出通过管道传输到这两个管道,然后压缩该目录。
编辑:将 FI 标志添加到 zip 中,这确实使这成为可能。唯一需要注意的是,您需要 zip 3.0 才能正常工作。 Tar:ing FIFO:s 未实现(根据 tar 开发人员),因为您需要提前获得文件大小才能将其写入 TAR 标头。
Create two named pipes in a new dir (with mkfifo), pipe the output of the commands to these two pipes and then zip the dir.
EDIT: Added the FI flag to zip, which does make this possible. The only caveat is that you need zip 3.0 for this to work. Tar:ing FIFO:s is not implemented (according to tar devs) because you need the file size in advance in order to write it to the TAR header.
请使用熔断器,fuze-zip。
Use fuse, fuze-zip rather.