No description
Find a file
2024-08-03 19:15:07 +02:00
.vscode initial commit. 2024-04-29 14:55:39 +02:00
src bump sysinfo to v0.31, fix OsStr issue from upgrade. 2024-08-03 19:15:07 +02:00
.editorconfig initial commit. 2024-04-29 14:55:39 +02:00
.gitignore initial commit. 2024-04-29 14:55:39 +02:00
Cargo.lock bump sysinfo to v0.31, fix OsStr issue from upgrade. 2024-08-03 19:15:07 +02:00
Cargo.toml bump sysinfo to v0.31, fix OsStr issue from upgrade. 2024-08-03 19:15:07 +02:00
needles_exact.txt.dist update comments in needles_* dist files. 2024-04-29 15:37:36 +02:00
needles_fuzzy.txt.dist update comments in needles_* dist files. 2024-04-29 15:37:36 +02:00
README.md initial commit. 2024-04-29 14:55:39 +02:00
renovate.json Add renovate.json 2024-04-29 13:33:11 +00:00

Rust Process Finder

Requirements

Setup

cp needles_exact.txt.dist needles_exact.txt
cp needles_fuzzy.txt.dist needles_fuzzy.txt

Run

cargo run

Watch files and run

cargo watch -x "run"

Usage

Print usage information

cargo run

Find new processes

New processes will be printed in console as they are started.

cargo run --bin find

Test filter strings

Add new process name/string to one of the test-files (needles_exact.txt or needles_fuzzy.txt).

cargo run --bin test

DEV

# Run cargo watch on find function
cargo watch -x "run --bin find"

# Run cargo watch on test function
cargo watch -x "run --bin test"