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

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