On Fri, Jan 28, 2011 at 04:00:13PM -0500, keenerd wrote: > A few more kinks have been worked out, and aur.kmkeen.com is fully > synced once more. New features: > > A bundle of all pkgbuilds (updated daily) at > http://aur.kmkeen.com/all_pkgbuilds.tar.xz > It is around 5 MB. > > A regex search. Names only (descriptions later). In the spirit of > Arch, netcat is the only supported client. > > echo 'names .*pac.*' | nc aur.kmkeen.com 1819 > It uses Python regex. >
netcat? Too heavy. Bash is my raw socket client. $ exec 3<>/dev/tcp/aur.kmkeen.com/1819 $ echo -e 'names cower.*' >&3 $ cat <&3 cower cower-git dave
