| Crates.io | ouch |
| lib.rs | ouch |
| version | 0.6.1 |
| created_at | 2021-03-24 05:18:59.914703+00 |
| updated_at | 2025-04-21 05:54:08.719977+00 |
| description | A command-line utility for easily compressing and decompressing files and directories. |
| homepage | |
| repository | https://github.com/ouch-org/ouch |
| max_upload_size | |
| id | 372832 |
| size | 314,475 |
ouch stands for Obvious Unified Compression Helper.
It's a CLI tool for compressing and decompressing for various formats.
Ouch has three main subcommands:
ouch decompress (alias d)ouch compress (alias c)ouch list (alias l or ls)To see help for a specific command:
ouch help <COMMAND>
ouch <COMMAND> --help # equivalent
Use the decompress subcommand, ouch will detect the extensions automatically.
ouch decompress a.zip
# Decompress multiple files
ouch decompress a.zip b.tar.gz c.tar
The -d/--dir flag can be used to redirect decompression results to another directory.
# Decompress 'summer_vacation.zip' inside of new folder 'pictures'
ouch decompress summer_vacation.zip --dir pictures
Pass input files to the compress subcommand, add the output file at the end.
# Compress two files into `archive.zip`
ouch compress one.txt two.txt archive.zip
# Compress file.txt using .lz4 and .zst
ouch compress file.txt file.txt.lz4.zst
ouch detects the extensions of the output file to decide what formats to use.
ouch list archive.zip
# Example with tree formatting
ouch list source-code.zip --tree
Output:
└── src
├── archive
│ ├── mod.rs
│ ├── tar.rs
│ └── zip.rs
├── utils
│ ├── colors.rs
│ ├── formatting.rs
│ ├── mod.rs
│ └── fs.rs
├── commands
│ ├── list.rs
│ ├── compress.rs
│ ├── decompress.rs
│ └── mod.rs
├── accessible.rs
├── error.rs
├── cli.rs
└── main.rs
| Format | .tar |
.zip |
7z |
.gz |
.xz, .lzma |
.bz, .bz2 |
.bz3 |
.lz4 |
.sz (Snappy) |
.zst |
.rar |
.br |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Supported | ✓ | ✓¹ | ✓¹ | ✓² | ✓ | ✓ | ✓ | ✓ | ✓² | ✓² | ✓³ | ✓ |
✓: Supports compression and decompression.
✓¹: Due to limitations of the compression format itself, (de)compression can't be done with streaming.
✓²: Supported, and compression runs in parallel.
✓³: Due to RAR's restrictive license, only decompression and listing can be supported.
If you wish to exclude non-free code from your build, you can disable RAR support
by building without the unrar feature.
tar aliases are also supported: tgz, tbz, tbz2, tlz4, txz, tlzma, tsz, tzst.
Formats can be chained:
.tar.gz.tar.gz.xz.zst.gz.lz4.szIf the filename has no extensions, Ouch will try to infer the format by the file signature and ask the user for confirmation.
pacman -S ouch
scoop install ouch
cargo install ouch
Check the releases page.
Check the wiki guide on compiling.
If running ouch results in a linking error, it means you're missing a runtime dependency.
If you're downloading binaries from the releases page, try the musl variants, those are static binaries that require no runtime dependencies.
Otherwise, you'll need these libraries installed on your system:
These should be available in your system's package manager.
Benchmark results are available here. Performance of compressing and decompressing Rust source code are measured and compared with Hyperfine. The values presented are the average (wall clock) elapsed time.
Note: ouch focuses heavily on usage ergonomics and nice error messages, but
we plan on doing some optimization in the future.
Versions used:
ouch is made out of voluntary work, contributors are very welcome! Contributions of all sizes are appreciated.
If you're creating a Pull Request, check CONTRIBUTING.md.