scorpiox-bash๐ shell
Execute shell commands and return output across platforms. A cross-platform shell execution utility for automation and scripting.
๐ง Linux x64
๐ง Linux ARM64
๐ macOS ARM64
๐ช Windows x64
๐ก Usage Examples
Basic command execution
$ scorpiox-bash "echo Hello, World!"
Hello, World!
System information
$ scorpiox-bash "df -h / | tail -1"
/dev/sda1 100G 42G 58G 42% /
$ scorpiox-bash "ps aux | grep nginx | head -3"
Streaming output for long-running commands
$ scorpiox-bash --stream "make -j$(nproc) 2>&1"
$ scorpiox-bash -s "tail -f /var/log/syslog"
Pipeline and scripting
$ scorpiox-bash "find /src -name '*.c' | wc -l"
47
$ scorpiox-bash "echo $HOME && whoami"
/home/dev
dev
Cross-platform deployment checks
$ scorpiox-bash "free -m 2>/dev/null || vm_stat | head -5"
$ scorpiox-bash "systemctl is-active nginx"
active
Display help
$ scorpiox-bash --help