arc

Create and extract ARC format archives

TLDR

Create archive
$ arc a [archive.arc] [files]
Extract archive
$ arc x [archive.arc]
List archive contents
$ arc l [archive.arc]
Test archive integrity
$ arc t [archive.arc]

SYNOPSIS

arc command [archive] [files]

DESCRIPTION

arc creates and manipulates archives in the ARC format, which was widely popular in the MS-DOS era during the 1980s. It supports creating new archives, extracting files, listing contents, and testing archive integrity.The tool handles various compression methods used in historical ARC files, including Squeeze, Crunch, and LZW variants. It is primarily used today for accessing legacy archive files rather than creating new ones, as modern formats like zip and tar.gz offer significantly better compression and features.

PARAMETERS

a

Add files to archive
x
Extract files
e
Extract to current directory
l
List contents
t
Test archive
d
Delete files from archive
p
Print file contents
v
View with details

INSTALL

sudo apt install arc
sudo dnf install arc
yay -S arc
sudo zypper install arc

CAVEATS

The ARC format is obsolete; use modern formats like zip or tar.gz for new archives. Limited compression compared to modern algorithms. Mainly for legacy compatibility.

HISTORY

The ARC format was created by System Enhancement Associates in 1985 and was one of the first popular file compression formats for personal computers.

SEE ALSO

unzip(1), tar(1), gzip(1)

RESOURCES

Source code