Search/run.sh
2024-06-15 18:12:01 +02: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