source: genesis/tools/pencontrl/pencontrl.sh@ 5923

Last change on this file since 5923 was 4317, checked in by dirkx, 20 years ago

Fixing line types

  • Property svn:eol-style set to native
File size: 391 bytes
Line 
1#!/bin/sh
2echo "" > /tmp/tmp
3
4get_fetch() {
5 http_proxy="$1:$2"
6 export http_proxy
7 test=`fetch -T 10 -o /dev/null http://www.planet.nl 2>&1`
8 if [ $? = 0 ]; then
9 echo "`echo "$test" |grep kBps | \
10 sed 's/^.*(//' | awk '{print $1}'` $1" >> /tmp/tmp
11 fi
12}
13
14get_fetch proxy1.wleiden.net 3128
15get_fetch proxy2.wleiden.net 3128
16get_fetch proxy3.wleiden.net 3128
17
18sort -nr /tmp/tmp
19
Note: See TracBrowser for help on using the repository browser.