cnf-lib 0.6.0

Distribution-agnostic 'command not found'-handler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: (C) 2023 Andreas Hartmann <hartan@7x.de>
// This file is part of cnf-lib, available at <https://gitlab.com/hartang/rust/cnf>

//! # Misc utilities for different purposes
//!
//! This module houses a grab-bag of helpers and convenience-functions meant to make handling
//! different aspects of command finding easier.
pub mod command_line;
pub mod output_matcher;

pub use prelude::*;

/// Public prelude for common utlitities.
pub mod prelude {
    pub use super::command_line::{CommandLine, cmd};
    pub use super::output_matcher::OutputMatcher;
}