小编典典

创建zip文件并忽略目录结构

linux

我需要使用以下命令创建一个zip文件:

zip /dir/to/file/newZip /data/to/zip/data.txt

这可行,但是创建的zip文件会创建一个目录结构,将目录模仿为原始文件。我不需要很多额外的文件夹。

粗略浏览手册页或Google搜索时,我没有找到答案。


阅读 627

收藏
2020-06-03

共1个答案

小编典典

您可以使用-j

-j
--junk-paths
          Store just the name of a saved file (junk the path), and do  not
          store  directory names. By default, zip will store the full path
          (relative to the current directory).
2020-06-03