Linux解压rar文件到指定目录
时间: 2023-09-28 10:13:34 浏览: 56
Linux解压文件到指定目录的方法
5星 · 资源好评率100%
要在Linux上解压RAR文件并将其解压到指定目录,你可以使用以下命令:
```shell
unrar x /path/to/file.rar /path/to/destination/
```
这将解压`file.rar`文件并将其内容提取到`destination`目录。确保将`/path/to/file.rar`替换为实际的RAR文件路径,将`/path/to/destination/`替换为你想要将文件提取到的目标目录路径。
阅读全文