mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
12 lines
388 B
Plaintext
12 lines
388 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Can be run from TMUX pane to simply watch the tests without having to
|
||
|
# explicitely run them constantly. When combined with a dump() Go utility
|
||
|
# function provides immediate, real-time insight without complicating
|
||
|
# development with a bloated IDE. (Also see Monitoring for other ideas for
|
||
|
# running real-time evaluations during development)
|
||
|
|
||
|
clear
|
||
|
got "$@"
|
||
|
onchange got "$@"
|