Search/run.sh

8 lines
135 B
Bash
Raw Normal View History

2024-06-15 18:12:01 +02:00
#!/bin/sh
2024-04-10 22:40:12 +02:00
2024-06-15 18:12:01 +02:00
# Find all .go files in the current directory
GO_FILES=$(find . -name '*.go' -print)
# Run the Go program
go run $GO_FILES