about summary refs log tree commit diff
path: root/xmypkgs
blob: 4520462b13e42820839f84d4e5e103c629d5abf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# xmypkgs [EMAIL] - list all pkgs maintained by you (or EMAIL)

EMAIL=${1-$(git config user.email)}
if [ -z "$EMAIL" ]; then
	echo "who are you? tell your email address." 2>&1
	exit 1
fi

cd "$(xdistdir)" &&
git grep -l -F "<$EMAIL>" -- 'srcpkgs/*/template'
	cut -d/ -f2 |
	sort