https://github.com/haskell/tar
Reading, writing and manipulating ".tar" archive files.
https://github.com/haskell/tar
Last synced: 12 months ago
JSON representation
Reading, writing and manipulating ".tar" archive files.
- Host: GitHub
- URL: https://github.com/haskell/tar
- Owner: haskell
- License: other
- Created: 2015-09-22T14:36:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-03-01T15:23:45.000Z (about 1 year ago)
- Last Synced: 2025-03-22T14:23:47.482Z (12 months ago)
- Language: Haskell
- Homepage: https://hackage.haskell.org/package/tar
- Size: 795 KB
- Stars: 40
- Watchers: 8
- Forks: 37
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# tar [](https://hackage.haskell.org/package/tar)
This library is for working with `.tar` archive files. It can read and write a range of common variations of archive format including V7, POSIX USTAR and GNU formats. It provides support for packing and unpacking portable archives and features for random access to archive content using an index.
For a quick start with the API look at `htar/htar.hs`,
which implements a very basic `tar` command-line tool.
To run benchmarks download [`01-index.tar`](https://hackage.haskell.org/01-index.tar) into the package folder:
```sh
wget https://hackage.haskell.org/01-index.tar
cabal bench
```