- 🐚作者简介:花神庙码农(专注于Linux、WLAN、TCP/IP、Python等技术方向)
- 🐳博客主页:花神庙码农 ,地址:https://blog.csdn.net/qxhgd
- 🌐系列专栏:Linux技术
- 📰如觉得博主文章写的不错或对你有所帮助的话,还望大家三连支持一下呀!!! 👉关注?、点赞👍、收藏📂、评论。
- 如需转载请参考转载须知!!
tar abcd 压缩包 源文件或目录
其中:
- a是可选的,指定压缩工具,z表示 gzip,j表示 bz2,J表示 xz
- b指定所需的操作,c表示创建(压缩),x表示提取,t表示检查(表)
- c是可选的,用于切换详细模式,v表示打开
- d是可选的,告诉 tar 您将提供一个文件名,f表示 on
- f – specify archive filename (required) ,specifies file input, rather than STDIN
- z – for gzip (.tar.gz) (choice) ,omit this if you just have a .tar
- j – for bzip2 (.tar.bz2) (choice)
- J – for xz (.tar.xz) (choice)
- v – Enables verbose mode, showing the progress of the command
- x – Extract
- c – create new archive (required)
tar -Jcvf test.tar.xz test
tar -Jxf test.tar.xz
tar -czvf test.tar.gz test
tar -zxvf test.tar.gz test
tar -cjf test.tar.bz2 test
tar -xjf test.tar.bz2
如本文对你有些许帮助,欢迎大佬支持我一下,您的支持是我持续创作的不竭动力
支持我的方式