safeshell 0.1.3

SafeShell: A security tool for shell history management, designed to detect, stash, and clear sensitive commands, ensuring safer terminal sessions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate core;

pub use self::{
    emoji::Emojis,
    state::{init, ShellContext},
};

mod emoji;
mod masker;
mod state;

pub mod clearer;
pub mod config;
pub mod data;
pub mod dialog;
pub mod engine;
pub mod exporter;
pub mod shell;