pirs 0.0.10

A portable Bash-like shell written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
pub const ECHO_COMMAND: crate::Command = crate::Command {
  name: "version",
  handler: |ctx, args| {
    Box::pin(async move {
      ctx.logger.raw(&args.join(" "));

      (Some(ctx), 0)
    })
  },
};