#!/usr/bin/perl # # fdupe tool - finding duplicate files # # $Id: fdupe,v 1.7 2011/10/14 2…
#!/usr/bin/perl use Getopt::Long; use DBI; use warnings; use strict; my $config_file=''; m…
#!/usr/bin/perl -w use threads; use threads::shared; $| =1 ; my $flag : shared = 0; &p…
#!/usr/bin/perl -w use Tk; $Tk::strictMotif = 1; $main = MainWindow->new(); $button1 = …
use Win32::File; Win32::File::SetAttributes($name, $attr); #!/usr/bin/perl -w use Win32::F…
use Net::Telnet; $telnet = Net::Telnet->new ( Timeout => 90, Prompt => '%', Host …
#!/usr/bin/perl # # Script to download a table of daily stock data in .csv format # from y…
use Mail::POP3Client; $mail = new Mail::POP3Client("username", "password", "pop3.yourserve…
#!/usr/bin/perl while( <> ) { if( /^#/ ) { if( /^#!/ ) { print $_; } next; } if( /##…
package MySQLDBI; use EV; use DBI; use base 'Exporter'; use strict; our @EXPORT = qw(creat…
use Net::SMTP; $smtp = Net::SMTP->new('smtp.126.com'); $smtp->auth('abcdef@126.com',…
#!perl use strict; use warnings; use utf8; use Encode; use DBI; my $dsn="DBI:mysql:databas…
Perl Socket server waiting for clients