Search/run.sh
2024-11-20 14:57:55 +01:00

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