Skip to content

Instantly share code, notes, and snippets.

@pdegama
Forked from zulhfreelancer/golang.md
Created April 15, 2023 03:51
Show Gist options
  • Select an option

  • Save pdegama/0734bd538227dc2dcd6798703acb0a41 to your computer and use it in GitHub Desktop.

Select an option

Save pdegama/0734bd538227dc2dcd6798703acb0a41 to your computer and use it in GitHub Desktop.
Run all Go files except tests

Run all Go files except tests

$ go run $(ls -1 *.go | grep -v _test.go)

OR

$ go run !(*_test).go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment