From charlesreid1

(Created page with "https://twitter.com/krisnova/status/1109618657305333761")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
https://twitter.com/krisnova/status/1109618657305333761
https://twitter.com/krisnova/status/1109618657305333761
{{Quote|
containertop/ctop is awesome.
<code><nowiki>alias ctop='docker run --name ctop -it --rm -v /var/run/docker.sock:/var/run/docker.sock http://quay.io/vektorlab/ctop '</nowiki></code>
}}
{{Quote|
entr, this CLI tool is just amazing, it's a simple watch and do whatever you want
<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