Crate process

source ·
Expand description

§Process

Cross-platform, asynchronous library to run commands in pipelines.

The core concept of this library is to simplify the execution of shell commands, following these rules:

  1. Commands are executed asynchronously, using the tokio async runtime.

  2. Commands work on all major platforms (windows, macos and linux).

  3. Commands can be executed in a pipeline, which means the output of the previous command is send as input of the next one.

Modules§

Structs§

Enums§

  • The main command structure.
  • The global Error enum of the library.

Functions§

Type Aliases§

  • The global Result alias of the library.