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
use EXIT_ERROR;

impl_trivial_builtin_cmd! {
    /// Represents a `false` builtin command.
    ///
    /// The `false` command has no effect and always exits unsuccessfully.
    pub struct False;

    /// Creates a new `false` builtin command.
    pub fn false_cmd();

    /// A future representing a fully spawned `false` builtin command.
    pub struct SpawnedFalse;

    EXIT_ERROR
}