Skip to content

Instantly share code, notes, and snippets.

@mfeineis
mfeineis / docker-image-rm-all.sh
Created February 28, 2018 08:11
Remove all docker images from your machine
#!/bin/bash
docker rmi $(docker images -a -q)
@mfeineis
mfeineis / git-stats.sh
Created February 28, 2018 08:10
Display the amount of lines added and removed by a specific author in your git repo
#!/bin/bash
git log --author="John Doe" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'