Bunster:將 Shell Script 變成程式!

從來沒想過 shell script 也可以變成程式
索性就來研究看看這新奇的工具 ~
Bunster 是一款可以將你的 shell script 轉成程式的一套工具,讓你的 shell script 變成有效率的 binary file。透過 parser 和 lexer,將 shell script 轉成 Golang 的程式碼,並透過 Goland 的 toolchain 把他轉成 machine code,所以比起 Compiler,Bunster 更像是 Transplier。目前 Bunster 只支援 Unix 平台,且語法大部分都是從 bash 上繼承而來的。

Bunster 流程圖
Install
安裝方法一共有 bash shell、Go 和 Docker,其中 Bash Shell 和 Go 都需要自行安裝 Go Toolchain,最簡單的方法就是 Docker。
Bash Shell
- 安裝 Go Toolchain (如果安裝過的就可以跳過)
下載壓縮檔案,最新的版本連結可以到這裡 Link:
wget https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
解壓縮檔案到
/usr/local
:tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz
新增路徑到
~/.profile
,並套用:echo "export PATH=\$PATH:/usr/local/go/bin" >> ~/.profile source ~/.profile
安裝 Bunster
個人安裝:curl -f https://bunster.netlify.app/install.sh | bash
安裝給全部使用者:
curl -f https://bunster.netlify.app/install.sh | GLOBAL=1 bash
Docker
Docker image 都已經安裝好 Go Toolchain 和 Bunster,直接下載就可以用了。
docker pull ghcr.io/yassinebenaid/bunster:latest
Go
如果系統中本來就有 Go Toolchain 了,則可以直接用 Go 安裝。
go install github.com/yassinebenaid/bunster/cmd/bunster@latest
Usage
將 test.sh
編譯成 test
程式:
bunster build test.sh -o test
如果沒有要變成程式,而是 Go code 的話:
bunster generate test.sh -o test
Support Feature
目前 Bunster 支援很多種的語法,這裡列出了常用的幾種,詳情可以參考 Bunster - Supported Features
Redirect
echo hi > hi.txt
Pipeline
echo hi | tee hi.txt
Conditional
echo hi && echo hello
Parameters
foo=hi && echo "$foo"
Subshell
echo "$(pwd)/hi.txt"
if
if true; then echo 1 elif true; then echo 2 else echo 3 fi
while
while true; do echo hi done
Running in Background
python3 server.py &
Function
function hi() { echo hi } hi
Reference
- https://go.dev/dl/
- https://go.dev/doc/install
- https://bunster.netlify.app/
- https://github.com/yassinebenaid/bunster
- https://stackoverflow.com/questions/31255699/double-parenthesis-with-and-without-dollar
如果你覺得這篇文章有用 可以考慮贊助飲料給大貓咪