readme: right align packaging status
[ouch.git] / README.md
blobeb9b53d62b5f8a1546cb330daa03cd3ec8361486
1 <p align="center">
2   <a href="https://crates.io/crates/ouch">
3     <img src="https://img.shields.io/crates/v/ouch?color=6090FF&style=flat-square" alt="Crates.io link">
4   </a>
5   <a href="https://github.com/ouch/ouch-org/blob/master/LICENSE">
6     <img src="https://img.shields.io/crates/l/ouch?color=6090FF&style=flat-square" alt="License">
7   </a>
8 </p>
10 # Ouch!
12 `ouch` stands for **Obvious Unified Compression Helper**.
14 It's a CLI tool for compressing and decompressing for various formats.
16 - [Features](#features)
17 - [Usage](#usage)
18 - [Installation](#installation)
19 - [Supported Formats](#supported-formats)
20 - [Benchmarks](#benchmarks)
21 - [Contributing](#contributing)
23 # Features
25 1. Easy to use.
26 2. Fast.
27 3. Great error message feedback.
28 4. No runtime dependencies required (for _Linux x86_64_).
29 5. Accessibility mode ([see more](https://github.com/ouch-org/ouch/wiki/Accessibility)).
30 6. Shell completions and man pages.
32 # Usage
34 Ouch has three main subcommands:
36 - `ouch decompress` (alias `d`)
37 - `ouch compress` (alias `c`)
38 - `ouch list` (alias `l` or `ls`)
40 ## Decompressing
42 Use the `decompress` subcommand, `ouch` will detect the extensions automatically.
44 ```sh
45 ouch decompress a.zip
47 # Decompress multiple files
48 ouch decompress a.zip b.tar.gz c.tar
49 ```
51 The `-d/--dir` flag can be used to redirect decompression results to another directory.
53 ```sh
54 # Decompress 'summer_vacation.zip' inside of new folder 'pictures'
55 ouch decompress summer_vacation.zip --dir pictures
56 ```
58 ## Compressing
60 Pass input files to the `compress` subcommand, add the **output file** at the end.
62 ```sh
63 # Compress two files into `archive.zip`
64 ouch compress one.txt two.txt archive.zip
66 # Compress file.txt using .lz4 and .zst
67 ouch compress file.txt file.txt.lz4.zst
68 ```
70 `ouch` detects the extensions of the **output file** to decide what formats to use.
72 ## Listing
74 ```sh
75 ouch list archive.zip
77 # Example with tree formatting
78 ouch list source-code.zip --tree
79 ```
81 Output:
83 ```
84 └── src
85    ├── archive
86    │  ├── mod.rs
87    │  ├── tar.rs
88    │  └── zip.rs
89    ├── utils
90    │  ├── colors.rs
91    │  ├── formatting.rs
92    │  ├── mod.rs
93    │  └── fs.rs
94    ├── commands
95    │  ├── list.rs
96    │  ├── compress.rs
97    │  ├── decompress.rs
98    │  └── mod.rs
99    ├── accessible.rs
100    ├── error.rs
101    ├── cli.rs
102    └── main.rs
105 # Supported formats
107 | Format    | `.tar` | `.zip` | `.gz` | `.xz`, `.lzma` | `.bz`, `.bz2` | `.lz4` | `.sz` | `.zst` |
108 |:---------:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|
109 | Supported | ✓ | ✓¹ | ✓² | ✓ | ✓ | ✓ | ✓² | ✓ |
111 ✓: Supports compression and decompression.
113 ✓¹: Due to limitations of `.zip`, it doesn't support streaming (de)compression.
115 ✓²: Supported, and compression runs in parallel.
117 `tar` aliases are also supported: `tgz`, `tbz`, `tbz2`, `tlz4`, `txz`, `tlzma`, `tsz`, `tzst`.
119 Formats can be chained:
121 - `.zst.gz`
122 - `.tar.gz.gz`
123 - `.tar.gz.gz.gz.zst.xz.bz.lz4`
125 If the filename has no extensions, `Ouch` will try to infer the format by the [file signature](https://en.wikipedia.org/wiki/List_of_file_signatures).
127 # Installation
129 <a href="https://repology.org/project/ouch/versions">
130   <img align="right" src="https://repology.org/badge/vertical-allrepos/ouch.svg" alt="Packaging status" />
131 </a>
133 ## On Arch Linux
135 ```bash
136 pacman -S ouch
139 ## On Windows via Scoop
141 ```cmd
142 scoop install ouch
145 ## From crates.io
147 ```bash
148 cargo install ouch
151 ## Download the latest release bundle
153 Check the [releases page](https://github.com/ouch-org/ouch/releases).
155 ## Compiling from source code
157 Check the [wiki guide on compiling](https://github.com/ouch-org/ouch/wiki/Compiling-and-installing-from-source-code).
159 # Dependencies
161 If you installed `ouch` using the download script, you will need no dependencies (static MUSL binary).
163 Otherwise, you'll need these libraries installed on your system:
165 * [liblzma](https://www.7-zip.org/sdk.html)
166 * [libbz2](https://www.sourceware.org/bzip2/)
167 * [libz](https://www.zlib.net/)
169 These are available on all mainstream _Linux_ distributions and on _macOS_.
171 # Benchmarks
173 Benchmark results are available [here](benchmarks/results.md).
174 Performance of compressing and decompressing
175 [Rust](https://github.com/rust-lang/rust) source code are measured and compared with
176 [Hyperfine](https://github.com/sharkdp/hyperfine).
177 The values presented are the average (wall clock) elapsed time.
179 Note: `ouch` focuses heavily on usage ergonomics and nice error messages, but
180 we plan on doing some optimization in the future.
182 Versions used:
184 - `ouch` _0.4.0_
185 - [`tar`] _1.34_
186 - [`unzip`][infozip] _6.00_
187 - [`zip`][infozip] _3.0_
189 # Contributing
191 `ouch` is made out of voluntary work, contributors are very welcome! No contribution is too small and all contributions are valued.
193 - Open an [issue](https://github.com/ouch-org/ouch/issues).
194 - Package it for your favorite distribution or package manager.
195 - Open a pull request.
196 - Share it with a friend!
198 [`tar`]: https://www.gnu.org/software/tar/
199 [infozip]: http://www.info-zip.org/