Linux Commands Helper
💬 Your AI-powered Linux assistant
unarj Command - Extract .arj Archives
The unarj command is used to extract files from ARJ archives (.arj files). It is useful for accessing legacy compressed files on Linux systems.
Syntax
unarj [options] archive.arj
Examples
unarj x files.arj
Extract all files from files.arj
into the current directory.
unarj l files.arj
List the contents of files.arj
without extracting.
unarj e files.arj /tmp
Extract files from files.arj
to the /tmp
directory.
Notes
- unarj is mainly used for legacy ARJ archives.
- ARJ format is less common today, but still found in some old archives.
- unarj may need to be installed separately on some distributions.