shellist 0.1.0

Shell history analysis. Parses .bash_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;
pub use command_filter::{filter_by_min_frequency, filter_commands, top_n};
pub use command_ranker::rank_commands;