From 7db0b1791ceecc0ae610605d06ecbb58fbff498a Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Thu, 9 Jul 2015 13:40:21 +0200 Subject: add xmypkgs --- xmypkgs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 xmypkgs (limited to 'xmypkgs') diff --git a/xmypkgs b/xmypkgs new file mode 100755 index 0000000..f8b117a --- /dev/null +++ b/xmypkgs @@ -0,0 +1,14 @@ +#!/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)" && +find srcpkgs -name template -print0 | + xargs -0 grep -l -F "<$EMAIL>" | + cut -d/ -f2 | + sort -- cgit 1.4.1