- Top 30 folders directories disk space sorted by size desc
du -h | sort -rh | head -30
- Find a particular file or dir in current dir recursively
find . -name "darwin_amd64" -type d -print0
- Find and delete a particular file or dir in current dir recursively (BEWARE!)
find . -name "darwin_amd64" -type d -print0 | xargs -0 rm -r --
- Useful network utilities for DNS
dig A google.com
dig AAAA google.com
nslookup google.com
host google.com
- Run maven on local without installing it
docker run -it --rm --name my-maven-project -v "$(pwd)":/usr/src/mymaven -w /usr/src/mymaven maven:3.3-jdk-8 mvn clean install