26 stable releases (6 major)

7.0.0 Feb 19, 2024
6.1.0 Oct 15, 2023
6.0.0 Jun 11, 2023
5.1.0 Feb 19, 2023
1.4.0 Nov 9, 2020

#43 in Command line utilities

Download history 188/week @ 2024-02-15 134/week @ 2024-02-22 27/week @ 2024-02-29 21/week @ 2024-03-07 24/week @ 2024-03-14 8/week @ 2024-03-21 12/week @ 2024-03-28 11/week @ 2024-04-04

57 downloads per month

MIT and LGPL-3.0-only

480KB
10K SLoC

Czkawka CLI

CLI frontend, allows to use Czkawka from terminal.

Requirements

Precompiled binaries should work without any additional dependencies with Linux(Ubuntu 20.04+), Windows(10+) and macOS(10.15+).

If you decide to compile the app, you probably will be able to run it on even older versions of OS, like Ubuntu 16.04 or Windows 7.

On linux it is even possible with eyra to avoid entirely libc and using fully static rust binary.

If you want to use similar videos tool, you need to install ffmpeg(runtime dependency) or use heif/libraw(build/runtime dependency) you need to install required packages.

Compilation

For compilation, you need to have installed Rust via rustup - https://rustup.rs/ and compile it e.g. via

cargo run --release --bin czkawka_cli

you can enable additional features via

cargo run --release --bin czkawka_cli --features "heif,libraw"

on linux to build fully static binary with eyra you need to use (this is only for crazy people, so just use command above if you don't know what you are doing)

rustup default nightly-2024-02-06 # or any newer nightly that works fine with eyra
cd czkawka_cli
cargo add eyra --rename=std
echo 'fn main() { println!("cargo:rustc-link-arg=-nostartfiles"); }' > build.rs
cd ..
cargo build --release --bin czkawka_cli

Limitations

Not all available features in core are available in CLI.

List of not available features:

  • Ability to use/choose referenced directories
  • See progress of scanning

LICENSE

MIT

Dependencies

~52–88MB
~1.5M SLoC