码迷,mamicode.com
首页 > 系统相关 > 详细

Linux命令:如何将多个文件及文件夹压缩为一个压缩文件

时间:2021-05-24 16:09:18      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:目录   注意   技术   www   文件   mic   argument   temp   div   

1、如何将多个文件及文件夹压缩为一个压缩文件

技术图片

  问题:我要把这些文件压缩为一个压缩文件

  解决方案:linux命令 — tar命令:https://www.runoob.com/linux/linux-comm-tar.html

PS D:\nuxtrun\test> tar czvf dev.tar.gz .\nuxt.config.js .\package.json .\package-lock.json .\router.js .\static\ .\.nuxta ./nuxt.config.js
a ./package.json
a ./package-lock.json
a ./router.js
tar.exe: ./static: Couldnt find file: Invalid argument
tar.exe: ./.nuxt: Couldnt find file: Invalid argument
tar.exe: Error exit delayed from previous errors.

  注意目录的话需要写通配符,否则的话就会报上面这个错。正确的应该这样:

PS D:\nuxtrun\test> tar czvf dev.tar.gz .\nuxt.config.js .\package.json .\package-lock.json .\router.js .\static\* .\.nuxt\*
a ./nuxt.config.js
a ./package.json
a ./package-lock.json
a ./router.js
a ./static/apple-app-site-association
a ./static/behavior.js
a ./static/favicon.ico
a ./static/robots.txt
a ./static/sitemap202102.xml
a ./static/wechatCode.css
a ./.nuxt/App.js
a ./.nuxt/axios.js
a ./.nuxt/client.js
a ./.nuxt/components
a ./.nuxt/empty.js
a ./.nuxt/index.js
a ./.nuxt/loading.html
a ./.nuxt/middleware.js
a ./.nuxt/router.js
a ./.nuxt/server.js
a ./.nuxt/store.js
a ./.nuxt/utils.js
a ./.nuxt/views
a ./.nuxt/views/app.template.html
a ./.nuxt/views/error.html
a ./.nuxt/components/no-ssr.js
a ./.nuxt/components/nuxt-build-indicator.vue
a ./.nuxt/components/nuxt-child.js
a ./.nuxt/components/nuxt-error.vue
a ./.nuxt/components/nuxt-link.client.js
a ./.nuxt/components/nuxt-link.server.js
a ./.nuxt/components/nuxt-loading.vue
a ./.nuxt/components/nuxt.js
PS D:\nuxtrun\test>

  然后就会在该目录下生成 dev.tar.gz 压缩文件

技术图片

Linux命令:如何将多个文件及文件夹压缩为一个压缩文件

标签:目录   注意   技术   www   文件   mic   argument   temp   div   

原文地址:https://www.cnblogs.com/goloving/p/14784584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!