7 lines
135 B
Bash
Executable file
7 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Find all .go files in the current directory
|
|
GO_FILES=$(find . -name '*.go' -print)
|
|
|
|
# Run the Go program
|
|
go run $GO_FILES
|