2024-06-15 18:12:01 +02:00
|
|
|
#!/bin/sh
|
2024-04-10 22:40:12 +02:00
|
|
|
|
2024-10-22 21:58:06 +02:00
|
|
|
# List all go files in this directory
|
|
|
|
GO_FILES=$(find . -name '*.go' -print)
|
2024-06-29 21:27:48 +02:00
|
|
|
|
|
|
|
# Run the Go program with the specified files first, followed by the remaining files
|
2024-10-22 21:58:06 +02:00
|
|
|
go run $FILES $GO_FILES
|