No description
| .vscode | ||
| src | ||
| .editorconfig | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| needles_exact.txt.dist | ||
| needles_fuzzy.txt.dist | ||
| README.md | ||
| renovate.json | ||
Rust Process Finder
Requirements
- Rust
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"