AdventOfCode2021/run.sh

8 lines
91 B
Bash
Raw Normal View History

2021-11-30 23:51:56 +00:00
#!/bin/bash
if [ "${1}" != "" ]; then
cd ${1}
go run *.go
cd - > /dev/null
fi