8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${1}" != "" ]; then
|
|
cd ${1}
|
|
go run *.go
|
|
cd - > /dev/null
|
|
fi
|