File: README.md

package info (click to toggle)
haskell-tar 0.6.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 336 kB
  • sloc: haskell: 3,237; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 692 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# tar [![Hackage](https://img.shields.io/hackage/v/tar.svg)](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
```