AdventOfCode2020/run.sh

8 lines
91 B
Bash
Raw Normal View History

2020-12-02 00:46:14 +00:00
#!/bin/bash
if [ "${1}" != "" ]; then
2020-12-12 17:23:14 +00:00
cd ${1}
2020-12-02 00:46:14 +00:00
go run *.go
cd - > /dev/null
fi