Extract RAR Files on Ubuntu
作者:XD / 发表: 2025年3月31日 06:55 / 更新: 2025年3月31日 06:55 / 编程笔记 / 阅读量:137
Extract RAR Files on Ubuntu
- Install:
sudo apt-get update
sudo apt-get install unrar
- Extract to current directory and preserve folder structure:
unrar x file.rar
- Extract to a specific directory:
unrar x file.rar /path/to/destination/
- Extract all files to the current directory (ignore folder structure):
unrar e file.rar
- List the contents of the archive (no extraction):
unrar l file.rar