mirror of
https://github.com/mfontanini/presenterm.git
synced 2025-05-05 15:32:58 +00:00
9 lines
128 B
Bash
9 lines
128 B
Bash
#!/usr/bin/env bash
|
|
|
|
export GO111MODULE=off
|
|
tempdir=$(mktemp -d)
|
|
cd "$tempdir"
|
|
mv "$1" main.go
|
|
go run main.go
|
|
rm -rf "$tempdir"
|