mirror of
https://github.com/tiyn/wiki.git
synced 2025-08-05 04:57:45 +02:00
minecraft: added mod guide to docker image audio: added and linked openaudible package managers: added version-specific installation of AUR and manual installation of PKGBUILD
17 lines
377 B
Markdown
17 lines
377 B
Markdown
# tar
|
|
|
|
tar is a package that acts a an archiving utility.
|
|
|
|
## Usage
|
|
|
|
This section addresses the usage of the tar package.
|
|
|
|
### Uncompressing a tar Archive
|
|
|
|
A tar archive (`.tar`, `.tar.gz`, etc.) can be uncompressed by running the following command.
|
|
In this command `<tar archive>` stands in as a placeholder for the path of the tar archive.
|
|
|
|
```sh
|
|
tar -xf <tar archive>
|
|
```
|