Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.481.230 Times

Perl Stdout software
Filter: All | Freeware | Demo
 

Perl Stdout

< 1 2 3 4 5 
Added: August 21, 2008 | Visits: 1.532

Perl Module Manager Perl Module Manager helps you to install, un-install and manage Perl modules from a CPAN site and other sources in an easy and intuitive way. Allows you to search through thousands of useful modules and libraries on a CPAN site and its mirrors. Automatically launches internal nmake util and makes... Platforms: Windows

License: Freeware Size: 1.44 MB Download (538): Perl Module Manager Download

Added: August 09, 2008 | Visits: 6.059

Open Perl IDE Open Perl IDE is an integrated development environment for writing and debugging Perl scripts with any standard perl distribution. Features include - Complete encapsulation of "perl.exe"; Erroneous script lines will be listed on run, compile or debug; The first error-line is marked in editor... Platforms: Windows

License: Freeware Size: 1.1 MB Download (1967): Open Perl IDE Download

Added: January 18, 2010 | Visits: 712

dump_kstat dump_kstat is a Perl module created to dump the kstat structure. This simple script dumps the entire kstat structure to stdout - useful for figuring out what statistics are available. EXAMPLES $ dump_kstat audio.0.audioc0 class = controller audio.0.audioc0 crtime = 3533.04802622... Platforms: *nix

License: Freeware Size: 24.58 KB Download (94): dump_kstat Download

Added: January 18, 2010 | Visits: 945

XML::DocStats XML::DocStats is a Perl module to produce a simple analysis of an XML document. SYNOPSIS Analyze the xml document on STDIN, the STDOUT output format is html: use XML::DocStats; my $parse = XML::DocStats->new; $parse->analyze; Analyze in-memory xml document: use XML::DocStats; my... Platforms: *nix

License: Freeware Size: 27.65 KB Download (88): XML::DocStats Download

Added: July 01, 2010 | Visits: 734

Devel::GDB Devel::GDB is a Perl module to open and communicate a gdb session. SYNOPSIS use Devel::GDB; $gdb = new Devel::GDB(); print $gdb->send_cmd(-environment-path); print $gdb->get(info functions); The old get syntax (of Devel::GDB-1.23) has been deprecated and will not be supported in future... Platforms: *nix

License: Freeware Size: 12.29 KB Download (100): Devel::GDB Download

Added: August 19, 2010 | Visits: 725

Modwheel Modwheel Perl module is a tree-based Web framework. Most web sites are pages categorized by topic. So web sites can be viewed as a tree system where every page is a sub-tree and the page elements are nodes. Page elements can be things like articles, links, ads, news, comments and so on. In... Platforms: *nix

License: Freeware Size: 1.4 MB Download (95): Modwheel Download

Added: June 24, 2010 | Visits: 1.303

XML::SAX::Machine XML::SAX::Machine is a Perl module that can manage a collection of SAX processors. SYNOPSIS ## Note: See XML::SAX::Pipeline and XML::SAX::Machines first, ## this is the gory, detailed interface. use My::SAX::Machines qw( Machine ); use My::SAX::Filter2; use My::SAX::Filter3; my... Platforms: *nix

License: Freeware Size: 43.01 KB Download (103): XML::SAX::Machine Download

Added: July 20, 2010 | Visits: 713

Devel::DumpSizes Devel::DumpSizes is a Perl module to dump the name and size in bytes (in increasing order) of variables that are available at a give point in a script. SYNOPSIS use Devel::DumpSizes qw/dump_sizes/; &Devel::DumpSizes::dump_sizes(); Or,... Platforms: *nix

License: Freeware Size: 3.07 KB Download (91): Devel::DumpSizes Download

Added: August 30, 2017 | Visits: 1.253

OurNet::BBSApp::Sync OurNet::BBSApp::Sync is a Perl module to sync between BBS article groups. SYNOPSIS my $sync = OurNet::BBSApp::Sync->new({ artgrp => $local->{boards}{board1}{articles}, rartgrp => $remote->{boards}{board2}{articles}, param => { lseen => 0, rseen => 0, remote => bbs.remote.org, backend... Platforms: *nix

License: Freeware Size: 24.58 KB Download (112): OurNet::BBSApp::Sync Download

Added: June 16, 2010 | Visits: 946

I18N::AcceptLanguage I18N::AcceptLanguage is a Perl module that matches language preference to available languages. SYNOPSIS use I18N::AcceptLanguage; my $supportedLanguages = [( en-us, fr )]; my $acceptor = I18N::AcceptLanguage->new(); my $language = $acceptor->accepts($ENV{HTTP_ACCEPT_LANGUAGE},... Platforms: *nix

License: Freeware Size: 9.22 KB Download (89): I18N::AcceptLanguage Download

Added: June 13, 2010 | Visits: 854

PDL::IO::Misc PDL::IO::Misc is a Perl module with misc IO routines for PDL. rcols() Read ASCII whitespaced cols from a file into piddles and perl arrays (also see "rgrep()"). There are two calling conventions - the old version, where a pattern can be specified after the filename/handle, and the new... Platforms: *nix

License: Freeware Size: 2.1 MB Download (87): PDL::IO::Misc Download

Added: October 20, 2010 | Visits: 828

Contextual::Return Contextual::Return is a Perl module to create context-senstive return values. SYNOPSIS use Contextual::Return; use Carp; sub foo { return SCALAR { thirty-twelve } BOOL { 1 } NUM { 7*6 } STR { forty-two } LIST { 1,2,3 } HASHREF { {name => foo, value => 99} } ARRAYREF { [3,2,1] }... Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Contextual::Return Download

Added: February 25, 2010 | Visits: 1.551

WWW::Babelfish WWW::Babelfish is a Perl extension for translation via Babelfish or Google. SYNOPSIS use WWW::Babelfish; $obj = new WWW::Babelfish( service => Babelfish, agent => Mozilla/8.0, proxy => myproxy ); die( "Babelfish server unavailablen" ) unless defined($obj); $french_text = $obj->translate(... Platforms: *nix

License: Freeware Size: 9.22 KB Download (102): WWW::Babelfish Download

Added: June 25, 2010 | Visits: 810

Carp::Datum Carp::Datum is a Perl module used for debugging and tracing. SYNOPSIS # In modules use Carp::Datum; # Programming by contract sub routine { DFEATURE my $f_, "optional message"; # $f_ is a lexical lvalue here my ($a, $b) = @_; DREQUIRE $a > $b, "a > b"; $a += 1; $b += 1; DASSERT $a >... Platforms: *nix

License: Freeware Size: 38.91 KB Download (91): Carp::Datum Download

Added: October 26, 2010 | Visits: 800

BSD::Ipfwgen BSD::Ipfwgen is a Perl module to aid in the creation of ipfw-based firewalls. SYNOPSIS use BSD::Ipfwgen; outside qw(**interface list**); leaf qw(**interface list**); consolidate qw(**network list**); us qw(**network list**); not_us qw(**network list**); to_us qw(**network list**);... Platforms: *nix

License: Freeware Size: 12.29 KB Download (99): BSD::Ipfwgen Download

Added: July 04, 2010 | Visits: 1.445

CGI::Out CGI::Out is a Perl module to buffer output when building CGI programs. SYNOPSIS use CGI; use CGI::Out; $query = new CGI; savequery $query; # to reconstruct input $CGI::Out::mailto = fred; # override default of $<
out $query->header(); out $query->start_html( -title=>A test,... Platforms: *nix

License: Freeware Size: 4.1 KB Download (90): CGI::Out Download

Released: December 22, 2012  |  Added: December 22, 2012 | Visits: 2.295

sqlpp sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also #perldef for calling arbitrary perl code. SYNOPSIS... Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): sqlpp Download

Added: February 08, 2010 | Visits: 1.163

HPUX::Ioscan HPUX::Ioscan is a Perl function to handle HPUX ioscan command. SYNOPSIS use HPUX::Ioscan ; my $result = ioscan (); print "All hardware paths: ", join(" ", keys %$result),"n"; print "One device file of disk :n", $result->{2/1.6.0}{device_files}[0], "n"; This module works on top of the... Platforms: *nix

License: Freeware Size: 19.46 KB Download (94): HPUX::Ioscan Download

Added: August 24, 2010 | Visits: 1.607

JavaScript::Minifier JavaScript::Minifier is a Perl translation of jsmin.c. SYNOPSIS use JavaScript::Minifier; my $obj = new JavaScript::Minifier; $obj->minify(*STDIN, *STDOUT); use JavaScript::Minifier qw(jsmin); jsmin(*STDIN, *STDOUT); This work is a translation from C to Perl of jsmin.c published by... Platforms: *nix

License: Freeware Size: 4.1 KB Download (144): JavaScript::Minifier Download

Added: July 10, 2010 | Visits: 729

MARC::Charset MARC::Charset is a Perl module to convert MARC-8 encoded strings to UTF-8. SYNOPSIS # import the marc8_to_utf8 function use MARC::Charset marc8_to_utf8; # prepare STDOUT for utf8 binmode(STDOUT, utf8); # print out some marc8 as utf8 print marc8_to_utf8($marc8_string); MARC::Charset... Platforms: *nix

License: Freeware Size: 184.32 KB Download (104): MARC::Charset Download

< 1 2 3 4 5