7 lines
88 B
Plaintext
7 lines
88 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
mv $1 $1.go
|
||
|
filename=*.go
|
||
|
shift
|
||
|
GOCACHE=$PWD go run $filename "$@"
|