diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-10-11 20:13:47 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-10-11 20:13:47 +0000 |
commit | f9d930956bc37cc8ff9b5d076fef96c168951bbb (patch) | |
tree | f7d7824f470d5806fd17361410b4fed3bf753fd2 /net-p2p/gift-gnutella/files | |
parent | Removing package... (diff) | |
download | gentoo-2-f9d930956bc37cc8ff9b5d076fef96c168951bbb.tar.gz gentoo-2-f9d930956bc37cc8ff9b5d076fef96c168951bbb.tar.bz2 gentoo-2-f9d930956bc37cc8ff9b5d076fef96c168951bbb.zip |
use faster server
Diffstat (limited to 'net-p2p/gift-gnutella/files')
-rw-r--r-- | net-p2p/gift-gnutella/files/cacheupdate.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-p2p/gift-gnutella/files/cacheupdate.sh b/net-p2p/gift-gnutella/files/cacheupdate.sh index 260ff64f41ff..81a2ac5e86cd 100644 --- a/net-p2p/gift-gnutella/files/cacheupdate.sh +++ b/net-p2p/gift-gnutella/files/cacheupdate.sh @@ -1,11 +1,11 @@ #!/bin/bash # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-gnutella/files/cacheupdate.sh,v 1.4 2004/09/27 03:46:46 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-gnutella/files/cacheupdate.sh,v 1.5 2004/10/11 20:13:47 squinky86 Exp $ if [ -d ~/.giFT/Gnutella/ ]; then cd ~/.giFT/Gnutella - wget http://gwebcache1.limewire.com/gwebcache/cgi-bin/perlgcache.cgi?get=1\&hostfile=1\&net=gnutella2\&client=GEN2\&version=0.1 -O gwebcaches.new || die "Unable to retrieve new caches." + wget http://gwebcache.squinky.gotdns.com/perlgcache.cgi?get=1\&hostfile=1\&net=gnutella2\&client=GEN2\&version=0.1 -O gwebcaches.new || die "Unable to retrieve new caches." grep "u|" gwebcaches.new > gwebcaches.new1 sed -i -e 's:u|::g' gwebcaches.new1 sed -i -e 's:|.*::g' gwebcaches.new1 |