假设 test目录下有 1 2 3 4 5 这5个目录
现在要将 3 4 5目录tar打包,1和2目录不要
命令如下:
代码如下 | 复制代码 |
tar -zcvf test.tar.gz –exclude=1 –exclude=2 test //test 目录下 或 tar -zcvf test.tar.gz –exclude=test/1 –exclude=test/2 test //test目录外 |
时间: 2024-09-25 04:07:51
假设 test目录下有 1 2 3 4 5 这5个目录
现在要将 3 4 5目录tar打包,1和2目录不要
命令如下:
代码如下 | 复制代码 |
tar -zcvf test.tar.gz –exclude=1 –exclude=2 test //test 目录下 或 tar -zcvf test.tar.gz –exclude=test/1 –exclude=test/2 test //test目录外 |