创建zip文件并忽略目录结构
我需要使用以下命令创建一个zip文件:
zip /dir/to/file/newZip /data/to/zip/data.txt
这可行,但是创建的zip文件会创建一个目录结构,将目录模仿为原始文件。我不需要很多额外的文件夹。
粗略浏览手册页或Google搜索时,我没有找到答案。
回答:
您可以使用-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).
以上是 创建zip文件并忽略目录结构 的全部内容, 来源链接: utcz.com/qa/419104.html