conch-runtime 0.1.2

A library for evaluating/executing programs written in the shell programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use EXIT_SUCCESS;

impl_trivial_builtin_cmd! {
    /// Represents a `:` builtin command.
    ///
    /// The `:` command has no effect, and exists as a placeholder for word
    /// and redirection expansions.
    pub struct Colon;

    /// Creates a new `:` builtin command.
    pub fn colon();

    /// A future representing a fully spawned `:` builtin command.
    pub struct SpawnedColon;

    EXIT_SUCCESS
}