Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl # # ed2k_hash.pl # # Revision: 0.4 # Author: #include # License: GPL # # Creates a "hash" link for use with the # eDonkey2000 network, and prints it to # STDOUT. Works as both a commandline tool # and as a GUI tool. If the script is passed # a list of filenames as arguments, it will # print a link for each file to STDOUT. # If the script is run with NO arguments, # it starts in GUI mode. A Tk dialog will # pop up and ask for a filename. The file's # Ed2K link is printed to STDOUT. # # Usage: # # COMMANDLINE MODE # $ perl ed2k_hash.pl myfile.zip other_file.zip thisfile.zip > finishe +d_hash.txt # # GUI MODE # $ perl ed2k_hash.pl # use Digest::MD5; use strict; my $text; if ($#ARGV >= 0 ) { foreach my $fname (@ARGV) { print make_ed2k_link($fname); } } else { # Start up the GUI use Tk; my $mw = MainWindow->new(); $mw->title("ed2k_hash.pl"); $mw->Label(-text=>"Please enter a filename to hash:")->pack(-fill=>' +x'); $mw->Entry(-width => 25, -textvariable, \$text)->pack(-anchor => 'nw +',-fill=>'x'); $mw->Button(-text => "OK", -command => \&do_hash ) ->pack(-side => 'top', -anchor => 'nw',-fill=>'x'); $mw->Button(-text => "Cancel", -command => sub { exit }) ->pack(-side => 'top', -anchor => 'nw',-fill=>'x'); MainLoop; } sub do_hash { print make_ed2k_link($text); exit; } sub make_ed2k_link { my($fname)=@_; my $ctx = Digest::MD5->new; open(TFILE,"<$fname") or die "Can't open target file ($fname)."; $ctx->addfile(*TFILE); close TFILE; my $fhash = $ctx->hexdigest; my $fsize = -s $fname; return "ed2k://|file|$fname|$fsize|$fhash|\n"; }

In reply to Ed2K Link Maker by #include

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-19 02:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found