shellist 0.3.0

Shell history analysis. Parses bash, zsh, and fish history, counts commands, and ranks by frequency.
Documentation
1
2
3
4
5
6
7
8
9
//! Command aggregation: counting, ranking, and filtering.

pub mod command_counter;
pub mod command_filter;
pub mod command_ranker;

pub use command_counter::{count_commands, count_commands_at_depth};
pub use command_filter::{filter_by_min_frequency, filter_commands, top_n};
pub use command_ranker::{rank_commands, rank_commands_ascending};