7 lines
198 B
Bash
Executable file
7 lines
198 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# List all go files in this directory
|
|
GO_FILES=$(find . -name '*.go' -print)
|
|
|
|
# Run the Go program with the specified files first, followed by the remaining files
|
|
go run $FILES $GO_FILES
|