Android 连续解压.tar和.tar.gz
时间: 2023-09-06 20:07:07 浏览: 186
cmake-3.18.1.tar.gz
在 Android 上连续解压 `.tar` 和 `.tar.gz` 文件可以使用以下命令:
1. 解压 `.tar` 文件:
```
tar -xvf file.tar -C /path/to/destination
```
其中,`file.tar` 是要解压的文件名,`/path/to/destination` 是要将文件解压到的目标路径。
2. 解压 `.tar.gz` 文件:
```
tar -xzvf file.tar.gz -C /path/to/destination
```
其中,`file.tar.gz` 是要解压的文件名,`/path/to/destination` 是要将文件解压到的目标路径。
如果要连续解压多个文件,可以使用一个循环来处理它们。例如,假设有多个 `.tar` 文件需要解压,可以使用以下命令:
```
for file in *.tar; do tar -xvf "$file" -C /path/to/destination; done
```
类似地,如果有多个 `.tar.gz` 文件需要解压,可以使用以下命令:
```
for file in *.tar.gz; do tar -xzvf "$file" -C /path/to/destination; done
```
这将循环处理当前目录中的所有 `.tar` 或 `.tar.gz` 文件,并将它们解压到指定的目标路径中。
阅读全文