/gommand

Easily run Go code straight from your terminal.

Primary LanguageGoMIT LicenseMIT

gommand

Go one liner program similar to python -c

How can I get it?

go install github.com/sno6/gommand@latest

Examples

Write any Go code in a single line context, gommand will handle your imports and main function for you.

gommand 'fmt.Println("Hello gommand")'

You could also quickly serve your current directory in one line.

gommand 'http.Handle("/", http.FileServer(http.Dir("."))); fmt.Println(http.ListenAndServe(":8080", nil))'

Quickly find the date.

gommand 'fmt.Println(time.Now())'