/usr/bin/afex is in fex-utils 20160104-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | #!/usr/bin/perl -w
# client for anonymous FEX or SEX
#
# Author: Ulli Horlacher <framstag@rus.uni-stuttgart.de>
#
# Perl Artistic Licence
$fexserver = '';
$0 =~ s:.*/::;;
$u = $ENV{AFEX} || $fexserver || &guessserver;
$u = "http://$u" if $u !~ /^http/;
if (@ARGV and $ARGV[0] eq '-h' or not @ARGV and -t STDIN) { &usage }
$opt_v = (@ARGV and $ARGV[0] eq '-v') ? shift @ARGV : '';
if ($0 eq 'asex') {
$a = "$u/anonymous";
if (-t STDIN and @ARGV and "@ARGV" =~ /^(\d+)( -)?$/) {
$id = $1;
if ($2) {
vexec("sexget $opt_v $a $id | tar xvf -");
} else {
vexec(ws("sexget $opt_v $a $id"));
}
} else {
if (@ARGV and $ARGV[0] =~ /^\d+$/) {
$id = shift @ARGV;
} else {
$id = sprintf("%06d",rand(1000000));
}
print "# commands for SEX recipient:\n";
if (@ARGV) {
print "wget -qO- $u/sex?anonymous=$id | tar xvf -\n";
print "asex $id -\n";
print "# streaming files and waiting for SEX recipient:\n";
vexec("tar cvf - @ARGV | sexsend -q $opt_v $a $id");
} else {
print "wget -qO- $u/sex?anonymous=$id\n";
print "asex $id\n";
vexec(ws("sexsend -q $opt_v $a $id"));
}
}
exit;
}
if ($0 eq 'afex') {
if ("@ARGV" =~ /^-(\d+)$/) {
$n = $1;
$cmd = "wget -qO/dev/null $u/fop/anonymous/anonymous/afex_$n.tar?DELETE";
vsystem(ws($cmd));
print "not " if $?;
print "deleted\n";
exit;
}
# download
if (-t STDIN and "@ARGV" =~ /^(\d+)( -)?$/) {
$id = $1;
$nq = $2;
$u .= "/fop/anonymous/anonymous/afex_$id.tar";
if ($nq) {
vexec("fexget $opt_v -s- $u | tar xvf -");
} else {
$aft = "/tmp/afex_$id.tar";
$cmd = "fexget $opt_v -s- $u >$aft";
vsystem($cmd);
if (`file $aft` =~ /tar archive/) {
print "Files in archive:\n";
$cmd = "tar tvf $aft";
vsystem(ws($cmd));
print "extract these files (Y/n)? ";
if ((<STDIN>||'y') =~ /^[Yy\n]/) {
$cmd = "tar xvf $aft";
vsystem(ws($cmd));
unlink $aft;
} else {
print "keeping $aft\n";
}
} else {
open $aft,$aft or die "$0: cannot open $aft = $!\n";
unlink $aft;
print while read($aft,$_,65536);
}
}
exit;
}
# upload
else {
if (@ARGV and $ARGV[0] =~ /^\d+$/) {
$id = shift @ARGV;
} else {
$id = sprintf("%06d",rand(1000000));
}
$aft = "afex_$id.tar";
my $durl ="$u/fop/anonymous/anonymous/$aft??ID=ANONYMOUS";
if (`wget -S --spider $durl 2>&1` =~ /X-Location:/) {
die "$0: afex $id already exists - choose another ID\n";
}
@fexsend = ws("fexsend $opt_v -o -K -k 1");
if (@ARGV) {
vsystem(@fexsend,'-a',$aft,@ARGV,"$u/anonymous");
exit $? if $?;
} elsif (not -t STDIN) {
$aft = "/tmp/$aft";
open $aft,'>',$aft or die "$0: cannot write $aft - $!\n";
print {$aft} $_ while read(STDIN,$_,65536);
close $aft;
$s = vsystem(@fexsend,$aft,"$u/anonymous");
unlink $aft;
exit $s if $s;
} else {
die "say captain, say WHOT?!";
}
print "For download use:\n";
print "$u//$aft\n" if -t STDIN;
print "afex $id\n";
}
exit;
}
&usage;
sub guessserver {
my $fexserver = '';
my $rc = '/etc/resolv.conf';
local $_;
open $rc,$rc or die "$0: cannot open $rc - $!\n";
while (<$rc>) {
if (/^\s*domain\s+([\w.-]+)/) {
$fexserver = "http://fex.$1";
last;
}
if (/^\s*search\s+([\w.-]+)/) {
$fexserver = "http://fex.$1";
}
}
close $rc;
return $fexserver;
}
sub ws {
local $_ = shift;
return split;
}
sub vexec {
warn "@_\n" if $opt_v;
exec @_;
}
sub vsystem {
warn "@_\n" if $opt_v;
system @_;
}
sub usage {
if ($0 eq 'afex') {
print "file input usage: $0 [ID] files...\n";
print "file output usage: $0 ID [-]\n";
print "pipe input usage: ... | $0 [ID]\n";
print "pipe output usage: $0 ID | ...\n";
print "delete usage: $0 -ID\n";
exit;
}
if ($0 eq 'asex') {
print "file input usage: $0 [ID] files...\n";
print "file output usage: $0 ID -\n";
print "pipe input usage: ... | $0 [ID]\n";
print "pipe output usage: $0 ID | ...\n";
exit;
}
die "program name must be a afex or asex, not $0\n";
}
|