目錄

廣告 AD

Bunster:將 Shell Script 變成程式!

從來沒想過 shell script 也可以變成程式

索性就來研究看看這新奇的工具 ~

廣告 AD

Github - Bunster

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

Bunster 流程圖


安裝方法一共有 bash shell、Go 和 Docker,其中 Bash Shell 和 Go 都需要自行安裝 Go Toolchain,最簡單的方法就是 Docker。


  1. 安裝 Go Toolchain (如果安裝過的就可以跳過)
  • 下載壓縮檔案,最新的版本連結可以到這裡 Link

    shell

    wget https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
  • 解壓縮檔案到 /usr/local

    shell

    tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz
  • 新增路徑到 ~/.profile,並套用:

    shell

    echo "export PATH=\$PATH:/usr/local/go/bin" >> ~/.profile
    source ~/.profile
  1. 安裝 Bunster
    個人安裝:

    shell

    curl -f https://bunster.netlify.app/install.sh | bash

    安裝給全部使用者:

    shell

    curl -f https://bunster.netlify.app/install.sh | GLOBAL=1 bash

Docker image 都已經安裝好 Go Toolchain 和 Bunster,直接下載就可以用了。

shell

docker pull ghcr.io/yassinebenaid/bunster:latest

如果系統中本來就有 Go Toolchain 了,則可以直接用 Go 安裝。

shell

go install github.com/yassinebenaid/bunster/cmd/bunster@latest

test.sh 編譯成 test 程式:

shell

bunster build test.sh -o test

如果沒有要變成程式,而是 Go code 的話:

shell

bunster generate test.sh -o test

目前 Bunster 支援很多種的語法,這裡列出了常用的幾種,詳情可以參考 Bunster - Supported Features

  • Redirect

    shell

    echo hi > hi.txt
  • Pipeline

    shell

    echo hi | tee hi.txt
  • Conditional

    shell

    echo hi && echo hello
  • Parameters

    shell

    foo=hi && echo "$foo"
  • Subshell

    shell

    echo "$(pwd)/hi.txt"
  • if

    shell

    if true; then
        echo 1
    elif true; then
        echo 2
    else
        echo 3
    fi
  • while

    shell

    while true;
    do
        echo hi
    done
  • Running in Background

    shell

    python3 server.py &
  • Function

    shell

    function hi() {
        echo hi
    }
    
    hi


廣告 AD