Command Line Tools: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 4: | Line 4: | ||
containertop/ctop is awesome. | containertop/ctop is awesome. | ||
<code>alias ctop='docker run --name ctop -it --rm -v /var/run/docker.sock:/var/run/docker.sock http://quay.io/vektorlab/ctop '</code> | <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> | ||
}} | }} | ||
| 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