From charlesreid1

No edit summary
No edit summary
 
Line 10: Line 10:
entr, this CLI tool is just amazing, it's a simple watch and do whatever you want  
entr, this CLI tool is just amazing, it's a simple watch and do whatever you want  


<code>find . -name "*.go" | entr -c go build</code>
<code><nowiki>find . -name "*.go" | entr -c go build</nowiki></code>
}}
}}

Latest revision as of 06:00, 29 March 2019

https://twitter.com/krisnova/status/1109618657305333761


containertop/ctop is awesome.

alias ctop='docker run --name ctop -it --rm -v /var/run/docker.sock:/var/run/docker.sock http://quay.io/vektorlab/ctop '



entr, this CLI tool is just amazing, it's a simple watch and do whatever you want

find . -name "*.go" | entr -c go build