2 ###APPNAME: proxy-download
4 ###APPDATE: 2008-09-19 01:59:04
6 ###APPDESC: proxy-download
8 ###APPEXAMPLE: proxy-download
12 #ENV variable MUST be defined somewhere,
13 #FOR perl to search modules from,
15 use lib
$ENV{XR_PERL_MODULE_DIR
};
17 use MyPlace
::Script
::Usage qw
/help_required help_even_empty/;
18 #exit 0 if(help_required($0,@ARGV));
19 exit 0 if(help_even_empty
($0,@ARGV));
20 my $default_proxy='http://proxy-https.net/index.php?hl=f5&q=';
21 my $default_encoder='rotate13';
25 $proxy |= $default_proxy;
26 $encoder |= $default_encoder;
28 $url=`echo "$url" | $encoder`;
31 system("download",$proxy . $url);