Talison Fabio 31dd9eb923
feat: Add rename option in overwrite menu (#779)
* feat: Add generic Choice prompt implementation

* feat: use ChoicePrompt in user_wants_to_continue method

* feat: add "rename" option in ask_to_create_file method

* feat: check accessible mode for choises prompt

* feat: rename file in "ask_to_create_file" rename action

* feat: create "resolve_path" for smart_unpack to deal with rename

* feat: use resolve_path instead clear_path in smart_unpack

* fix: remove unused clear_path function

* chore: cargo fmt

* Add docs

* refactor: rename "resolve_path" method

* chore: fix ChoicePrompt doc

* doc: improve doc of resolve_path_conflict

* fix: out of bound when type answer bigger than some choice

* doc: improve rename_path docs

* chore: cargo fmt

* chore: revert user_wants_to_continue

* fix: update error message when find EOF in choise prompt response

* revert: update message error in ChoicePrompt instead Confirmation

* test: add overwrite and cancel tests

* test: Add rename test with "allow_piped_choice" new feature

* cargo fmt

* test: create test for autoincrement new renamed files
2025-03-30 19:19:21 -03:00
2022-11-23 17:36:47 -03:00
2023-11-30 15:46:56 -03:00
2023-02-03 01:17:33 -03:00
2025-03-01 00:01:45 -03:00
2025-02-12 13:59:18 -03:00
2024-03-07 17:01:28 -03:00
2024-11-17 14:50:02 -03:00
2025-02-12 13:59:18 -03:00
2022-07-04 11:06:16 -03:00

Crates.io link License

Ouch!

ouch stands for Obvious Unified Compression Helper.

It's a CLI tool for compressing and decompressing for various formats.

Features

  1. Easy to use.
  2. Fast.
  3. Great error message feedback.
  4. No runtime dependencies required (for Linux x86_64).
  5. Accessibility mode (see more).
  6. Shell completions and man pages.

Usage

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

Decompressing

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

Compressing

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.

Listing

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

Supported formats

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.sz

If the filename has no extensions, Ouch will try to infer the format by the file signature and ask the user for confirmation.

Installation

Packaging status

On Arch Linux

pacman -S ouch

On Windows via Scoop

scoop install ouch

From crates.io

cargo install ouch

Download the latest release bundle

Check the releases page.

Compiling from source code

Check the wiki guide on compiling.

Runtime Dependencies

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.

Benchmarks

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:

Contributing

ouch is made out of voluntary work, contributors are very welcome! Contributions of all sizes are appreciated.

  • Open an issue.
  • Package it for your favorite distribution or package manager.
  • Share it with a friend!
  • Open a pull request.

If you're creating a Pull Request, check CONTRIBUTING.md.

Description
No description provided
Readme MIT
Languages
Rust 97.2%
Shell 2.6%
Nix 0.2%