#!/bin/sh # Find all .go files in the current directory GO_FILES=$(find . -name '*.go' -print) # Run the Go program go run $GO_FILES