1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-08-05 04:57:45 +02:00
wiki/wiki/linux/tar.md
tiyn d3cb2cdfd3 added various entries
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
2024-12-30 07:02:18 +01:00

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>
```