ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/eg/fetch1
Revision: 1.7
Committed: Fri May 14 16:12:26 2004 UTC (22 years, 4 months ago) by root
Branch: MAIN
Changes since 1.6: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/usr/bin/perl
2
3 use Net::FCP;
4
5 # fetch a single (small) key and output it to stdout
6
7 my $fcp = new Net::FCP;
8
9 my ($meta, $data) = @{ $fcp->client_get ("freenet:$ARGV[0]", $ARGV[1]) };
10
11 use Data::Dumper;
12 print STDERR Dumper "$meta";
13 print $data;
14
15