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.033.750 Times

Sub Command software
Filter: All | Freeware | Demo
 

Sub Command

< 1 2 3 4 5 > 
Added: January 12, 2010 | Visits: 1.187

Arbitrary Command Output Colourer acoc is a regular-expression based colour formatter for programs that display output on the command-line. It works as a wrapper around the target program, executing it and capturing the stdout stream. Optionally, stderr can be redirected to stdout, so that it, too, can be manipulated. acoc then...



Platforms: *nix

License: Freeware Size: 40.96 KB Download (94): Arbitrary Command Output Colourer Download

Added: September 15, 2010 | Visits: 860

Devel::Command::NewF Devel::Command::NewF is a Perl module with the extended f command for the debugger. SYNOPSIS # In .perldb (or perldb.ini on Windows) use Devel::Command; # Devel::Command::NewF loaded automatically perl -de0 Patching with Devel::Command::DBSub::DB_5_8_5 Loading DB routines from...





Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Devel::Command::NewF Download

Added: November 16, 2010 | Visits: 784

Sub::Curry Sub::Curry is a Perl module to create curried subroutines. SYNOPSIS use Sub::Curry; use Sub::Curry qw/ :CONST curry /; # Import spice constants # and the &curry function. #my $f1 = Sub::Curry::->new(&foo, 1, 2); # Same as below. my $f1 = curry(&foo, 1, 2); my $f2 = $cb1->new(3, 4); my...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): Sub::Curry Download

Added: May 18, 2010 | Visits: 1.271

Sub::Slice::Manual Sub::Slice::Manual is a Perl module with user guide for Sub::Slice. USING Sub::Slice Sub::Slice is a way of breaking down a long-running process and maintaining state across a stateless protocol. This allows the client to draw a progress bar or abort the process part-way through. The...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (98): Sub::Slice::Manual Download

Added: January 04, 2010 | Visits: 1.278

Missile Command Missile Command project is a game in which you have to save your city from nuclear doom. Missile Command is a clone of the Atari save-your-city-from-impending-nuclear-doom game.. A Linux port of the save-your-city-from-impending-nuclear-doom game.


Platforms: *nix

License: Freeware Size: 204.8 KB Download (151): Missile Command Download

Added: October 25, 2010 | Visits: 3.913

Penguin Command Penguin Command is a clone of the classic "Missile Command" Game, but it has better graphics and music. The gameplay has only been slightly modified. Penguin Command is free software licensed under the GPL. Whats New in This Release: - fixed a possible freeze in Help/Options menu.


Platforms: *nix

License: Freeware Size: 1.1 MB Download (378): Penguin Command Download

Added: October 06, 2010 | Visits: 627

Sub::Timebound Sub::Timebound is a Perl extension for timebound computations. SYNOPSIS use Sub::Timebound; sub fun { my $i = shift; if ($i =~ /7$/) { die "Simulated internal errorn"; } while ($i) { $i--; } return "All is well"; } my $x = timeboundretry(10, 3, 5, &fun, 10); ### Returns { value...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (86): Sub::Timebound Download

Added: October 21, 2010 | Visits: 1.032

Term::Shell Term::Shell is a simple command-line shell framework. SYNOPSIS package MyShell; use base qw(Term::Shell); sub run_command1 { print "command 1!n"; } sub smry_command1 { "what does command1 do?" } sub help_command1 { <


Platforms: *nix

License: Freeware Size: 17.41 KB Download (96): Term::Shell Download

Added: June 18, 2010 | Visits: 850

Sub::Assert Sub::Assert - Design-by-contract like pre- and postconditions, etc. SYNOPSIS use Sub::Assert; sub squareroot { my $x = shift; return $x**0.5; } assert pre => $PARAM[0] >= 1, # for the sake of simplicity post => $VOID or $RETURN <= $PARAM[0], sub => squareroot, context => novoid,...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (92): Sub::Assert Download

Added: July 16, 2010 | Visits: 936

Sub::Quotelike Sub::Quotelike is a Perl module that allows to define quotelike functions. SYNOPSIS use Sub::Quotelike; sub myq () { my $s = shift; # Do something with $s... return $s; } sub myqq (") { my $s = shift; # Do something with $s... return $s; } print myq/abc def/; print myqq{abc...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Sub::Quotelike Download

Added: September 19, 2010 | Visits: 769

Term::ShellUI Term::ShellUI is a fully-featured shell-like command line environment. SYNOPSIS use Term::ShellUI; my $term = new Term::ShellUI( commands => { "cd" => { desc => "Change to directory DIR", maxargs => 1, args => sub { shift->complete_onlydirs(@_); }, proc => sub { chdir($_[0] ||...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (88): Term::ShellUI Download

Added: August 26, 2010 | Visits: 1.313

Remote Secure Command System Remote Secure Command System project is a remote asynchronous and secure command system based on a file configuration. A standalone server sends and receives commands through files, and a batch system launch ssh and scp commands.. Get A Remote Secure Command System at SourceForge.net. Fast,...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (97): Remote Secure Command System Download

Added: April 02, 2010 | Visits: 1.138

Proc::Command Proc::Command is a backtick that does not use the shell for Perl under Windows. SYNOPSIS use Proc::Command @reponse = Proc::Command->command($command) @reponse = Proc::Command->command($command, $trys) @reponse = Proc::Command->command($command, $trys, $sleep) use Proc::Command...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Proc::Command Download

Added: February 26, 2010 | Visits: 845

Sub::DeferredPartial Sub::DeferredPartial is a deferred evaluation / partial application. SYNOPSIS use Sub::DeferredPartial def; $S = def sub : P1 P2 P3 { %_=@_; join , @_{qw(P1 P2 P3)} }; print $S->( P1 => 1, P2 => 2, P3 => 3 )->(); # 123 $A = $S->( P3 => 1 ); # partial application $B = $S->( P3 => 2 );...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Sub::DeferredPartial Download

Added: February 27, 2010 | Visits: 723

Sub::Regex Sub::Regex is a Perl module to create synonymous subroutines. SYNOPSIS use Sub::Regex; sub /look(s|ing)?_for/ ($){ foobar blah blah } look_for(Amanda); looks_for(Amanda); looking_for(Amanda); lOoKiNg_fOr(Amanda); Sub::Regex is a small tool for users to create a subroutine with...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (96): Sub::Regex Download

Added: January 25, 2010 | Visits: 1.269

Aqua For Command-Line Tools Aqua For Command-Line Tools provides point-and-click user interfaces for controlling the command-line tools shipped with Mac OS X. Use it to:Run powerful Unix tools with point-and-click ease.Quickly see what each tool does and which options are available.Skip the manual and have correct command...


Platforms: Mac

License: Shareware Cost: $0.00 USD Download (91): Aqua For Command-Line Tools Download

Released: January 13, 2012  |  Added: February 04, 2012 | Visits: 1.350

eePDF PCL to BMP Converter Command Line VeryDOC eePDF PCL to BMP Converter Command Line provides multiple editing options. It allows you to set image resolution, color depth, image width and height, etc. as you convert PCL to BMP. With the help of eePDF PCL to BMP Converter Command Line, you can create BMP image files with high quality...


Platforms: Windows

License: Shareware Cost: $125.00 USD Size: 6.44 MB Download (548): eePDF PCL to BMP Converter Command Line Download

Released: January 13, 2012  |  Added: February 14, 2012 | Visits: 1.395

PCL to PDF Command Line application PCL to PDF Command Line application can convert the pcl to pdf keep hing quaility and similarity with the source pcl file. Meanwhile, you can adjust the converted pdf file according to your needs. Key parameters of PCL to PDF Command Line application: 1.-width int : Set page width for...


Platforms: Windows

License: Shareware Cost: $125.00 USD Size: 6.44 MB Download (577): PCL to PDF Command Line application Download

Released: January 13, 2012  |  Added: February 14, 2012 | Visits: 1.355

PRN to BMP Converter Command Line PRN to BMP Converter Command Line does not require any third party software allocation like Adobe Acrobat and Adobe reader when you use this software.It can well preserve the original color of the PCL files and can create high quality PDF and image files after batch conversion. Key...


Platforms: Windows

License: Shareware Cost: $125.00 USD Size: 6.44 MB Download (546): PRN to BMP Converter Command Line Download

Released: January 13, 2012  |  Added: February 14, 2012 | Visits: 1.354

PCL to TIF Converter Command Line PCL to TIF Converter Command Line enables users to set parameters when they convert PCL to TIF or TIFF raster image files. For instance, users are allowed to change the image size by setting image width and height via command line; they are allowed to set color depth and image resolution via...


Platforms: Windows

License: Shareware Cost: $125.00 USD Size: 6.44 MB Download (546): PCL to TIF Converter Command Line Download

< 1 2 3 4 5 >