blob: 8e8f498796777e24776e2eaf107e6ef779ff647e (
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
|