cmdshelf 2.0.1

Better scripting life with cmdshelf
Documentation

cmdshelf is a new way of scripting.😎

  • ✅ Seperate name space using directories (e.g. swiftpm/install.sh your/tool/install.sh)
  • ✅ No more $PATH configurations
  • ✅ bash-completion for all commands
  • ✅ stdout, stdin, stderr
  • ✅ No quoting required for arguments. (just like swift run)
  • ✅ The coolest manual page
  • ✅ Portable environment (.cmdshelf.toml)
  • ✅ Execute any executables.

You can see detailed document here, or type man cmdshelf.

Install

macOS

brew install cmdshelf

Build from source

Note that rust is required.

git clone git@github.com:toshi0383/cmdshelf.git
cd cmdshelf
cargo build --release
cp target/release/cmdshelf /usr/local/bin

Install auto bash-completion

Put this in your ~/.bashrc,

source /path-to/cmdshelf-completion.bash

Contribute

Any contribution is welcomed. Feel free to open issue for bug reports, questions, or feature requests.