Last active
October 8, 2022 17:23
-
-
Save msoap/a9ee054f80a58b16867c to your computer and use it in GitHub Desktop.
Run Go program as script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//usr/bin/env go run $0 "$@"; exit | |
package main | |
import ( | |
"fmt" | |
"os" | |
) | |
func main() { | |
fmt.Println("Hello world!") | |
cwd, _ := os.Getwd() | |
fmt.Println("cwd:", cwd) | |
fmt.Println("args:", os.Args[1:]) | |
} |
I would add one thing. I haven't tester that it work properly. But adding $? as argument to exit, should allow exit code to be set properly.
Unfortunately, this does not work properly. The exit code is always 1 or 0.
@msoap There is no way to get the correct error code from go run
, unfortunately. See here: https://stackoverflow.com/questions/55731760/go-os-exit2-show-a-bash-value-of-1
I tested (very briefly) on macos with os.Exit(1) and os.Exit(7). What I see in this env is that the exit code is propagated, and can be captured with $? in the calling shell.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, run is through /bin/sh