Search/run.sh

8 lines
135 B
Bash
Raw Normal View History

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