summary refs log tree commit diff
path: root/home/.local/bin/versions
blob: 25e5ff721e07b1710546138e042aaf653d2c00ee (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -u

for repo in ~/src/git/*; do
	version=$(git -C "${repo}" describe --dirty 2>/dev/null)
	if [ $? -eq 0 ]; then
		echo "${repo##*/}-${version#v}"
	fi
done | sort -nr -t '-' -k 3 | column -t -s '-'
/tr> 2020-04-25Accumulate thread envelopes before concatenationJune McEnroe 2020-04-24Free envelope in concatDataJune McEnroe 2020-04-24Use replyTo address in mailto:June McEnroe 2020-04-23Wrap quoted lines in <q>June McEnroe