Next: Proxylist, Previous: Startup File, Up: Top
Here is a sample of the result (The result is included in proxyout by default):
222.216.109.55:3128@HTTPC 0.032189 0.126676 0.161449 0.034833 HTTP:GET 64.34.113.100:80@HTTPC 0.372466 0.367725 1.555638 0.375829 HTTP:GET 59.41.253.35:80@HTTPC 0.025951 4.463531 0.687924 1.077910 HTTP:GET
The format is described in section Output (see Output).
Now type `bash', then you can sort the result like the following:
sort -nk 4 proxyout
The output:
222.216.109.55:3128@HTTPC 0.032189 0.126676 0.161449 0.034833 HTTP:GET 59.41.253.35:80@HTTPC 0.025951 4.463531 0.687924 1.077910 HTTP:GET 64.34.113.100:80@HTTPC 0.372466 0.367725 1.555638 0.375829 HTTP:GET
sort -nk 5 proxyout
The output:
222.216.109.55:3128@HTTPC 0.032189 0.126676 0.161449 0.034833 HTTP:GET 64.34.113.100:80@HTTPC 0.372466 0.367725 1.555638 0.375829 HTTP:GET 59.41.253.35:80@HTTPC 0.025951 4.463531 0.687924 1.077910 HTTP:GET
cat proxyout |while read proxy a b c d req;\ do echo $proxy $a $b $c $d `echo $a+$b+$c+$d|bc` $req;done |\ sort -nk 6
The output:
222.216.109.55:3128@HTTPC 0.032189 0.126676 0.161449 0.034833 .355147 HTTP:GET 64.34.113.100:80@HTTPC 0.372466 0.367725 1.555638 0.375829 2.671658 HTTP:GET 59.41.253.35:80@HTTPC 0.025951 4.463531 0.687924 1.077910 6.255316 HTTP:GET