Main > Free Download Search >

Free commands software for linux

commands

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3412
Commands::Guarded 0.01

Commands::Guarded 0.01


Commands::Guarded Perl package provides better scripts through guarded commands. more>>
Commands::Guarded Perl package provides better scripts through guarded commands.

SYNOPSIS

use Commands::Guarded;

my $var = 0;

step something =>
ensure { $var == 1 }
using { $var = 1 }
; # $var is now 1

step nothing =>
ensure { $var == 1 }
using { $var = 2 } # bug!
; # $var is still 1 (good thing too)

my $brokeUnless5 =
step brokenUnless5 =>
ensure { $var == 5 }
using { $var = shift }
; # nothing happens yet

print "var: $varn"; # prints 1

$brokeUnless5->do(5);

print "now var: $varn"; # prints 5

step fail =>
ensure { $var == 3 }
using { $var = 2 }
; # Exception thrown here

This module implements a deterministic, rectifying variant on Dijkstras guarded commands. Each named step is passed two blocks: an ensure block that defines a test for a necessary and sufficient condition of the step, and a using block that will cause that condition to obtain.

If step is called in void context (i.e., is not assigned to anything or used as a value), the step is run immediately, as in this pseudocode:

unless (ENSURE) {
USING;
die unless ENSURE;
}

If step is called in scalar or array context, execution is deferred and instead a Commands::Guarded object is returned, which can be executed as above using the do method. If do is given arguments, they will be passed to the ensure block and (if necessary) the using block.

The interface to Commands::Guarded is thus a hybrid of exported subroutines (see SUBROUTINES below) and non-exported methods (see METHODS).
For a detailed discussion of the reason for this modules existence, see RATIONALE below.

<<less
Download (0.012MB)
Added: 2007-05-23 License: Perl Artistic License Price:
885 downloads
Python commandsplus 0.2.3

Python commandsplus 0.2.3


Python commandsplus is a Python module that complements the existing commands module with an extra function. more>>
Python commandsplus is a Python module that complements the existing commands module with an extra function getstatusoutputerror, which separates the standard output from the standard error and makes it easier to evaluate return status.

Python commandsplus also includes a useful function that protects a command line argument from shell metacharacters.

<<less
Download (0.015MB)
Added: 2005-12-03 License: GPL (GNU General Public License) Price:
1422 downloads
POE::Component::ControlPort::DefaultCommands 0.01

POE::Component::ControlPort::DefaultCommands 0.01


POE::Component::ControlPort::DefaultCommands is a set of default commands available to the control port. more>>
POE::Component::ControlPort::DefaultCommands is a set of default commands available to the control port.

<<less
Download (0.012MB)
Added: 2007-02-13 License: Perl Artistic License Price:
983 downloads
AFS::Command::FS 1.7

AFS::Command::FS 1.7


AFS::Command::FS is a OO API to the AFS fs command. more>>
AFS::Command::FS is a OO API to the AFS fs command.

SYNOPSIS

use AFS::Command::FS;

my $fs = AFS::Command::FS->new();

my $fs = AFS::Command::FS->new
(
command => $path_to_your_fs_binary,
);

This module implements an OO API wrapper around the AFS fs command. The supported methods depend on the version of the fs binary used, and are determined automagically.

<<less
Download (0.076MB)
Added: 2006-11-02 License: Perl Artistic License Price:
1086 downloads
Tank Command 0.44

Tank Command 0.44


Tank Command project is a fast-paced 2D arcade game. more>>
Tank Command project is a fast-paced 2D arcade game.

Tank Command is a fast paced 2D arcade game in which the player must destroy all of the enemy units.

A balance between careful strategy and shoot-em-up action, this game is a fun and exciting way to pass some spare time.

<<less
Download (3.0MB)
Added: 2006-12-06 License: GPL (GNU General Public License) Price:
1153 downloads
AFS::Command::VOS 1.7

AFS::Command::VOS 1.7


AFS::Command::VOS is a OO API to the AFS vos command. more>>
AFS::Command::VOS is a OO API to the AFS vos command.

$path_to_your_vos_binary,
);

my $vos = AFS::Command::VOS->new
(
localauth => 1,
encrypt => 1,
);

This module implements an OO API wrapper around the AFS vos command. The supported methods depend on the version of the vos binary used, and are determined automagically.

<<less
Download (0.076MB)
Added: 2006-11-02 License: Perl Artistic License Price:
1087 downloads
AFS::Command::BOS 1.7

AFS::Command::BOS 1.7


AFS::Command::BOS is a OO API to the AFS bos command. more>>
AFS::Command::BOS is a OO API to the AFS bos command.

SYNOPSIS

use AFS::Command::BOS;

my $bos = AFS::Command::BOS->new();

my $bos = AFS::Command::BOS->new
(
command => $path_to_your_bos_binary,
);

my $bos = AFS::Command::BOS->new
(
localauth => 1,
);

This module implements an OO API wrapper around the AFS bos command. The supported methods depend on the version of the bos binary used, and are determined automagically.

<<less
Download (0.076MB)
Added: 2006-11-02 License: Perl Artistic License Price:
1086 downloads
AFS::Command::PTS 1.7

AFS::Command::PTS 1.7


AFS::Command::PTS is a OO API to the AFS pts command. more>>
AFS::Command::PTS is a OO API to the AFS pts command.

SYNOPSIS

use AFS::Command::PTS;

my $pts = AFS::Command::PTS->new();

my $pts = AFS::Command::PTS->new
(
command => $path_to_your_pts_binary,
);

my $pts = AFS::Command::PTS->new
(
noauth => 1,
force => 1,
);

This module implements an OO API wrapper around the AFS pts command. The supported methods depend on the version of the pts binary used, and are determined automagically.

<<less
Download (0.076MB)
Added: 2006-11-03 License: Perl Artistic License Price:
1087 downloads
Proc::Command 0.04

Proc::Command 0.04


Proc::Command is a backtick that does not use the shell for Perl under Windows. more>>
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 qw(command)

@reponse = command($command)
@reponse = command($command, $trys)
@reponse = command($command, $trys, $sleep)

Some Perls under Microsoft windows suffers disabilities over Unix Perls. One particular disability is a backtick without the console. Altough the Microsoft console, may be started without a window (start command with /b option or spawn program call), the Perl system command on windows usually creates a window. Creating a window causes immense user interface problem since it will randomly pop-up and take focus over the current window, erasing current entries into that window. Solutions such as "Proc::SafePipe" do not run on Perls for Window.

This module provides an answer by using the "open" command with a pipe to provide a backtick without a console that will run under Perls on Microsoft Windows.

<<less
Download (0.016MB)
Added: 2007-02-13 License: Perl Artistic License Price:
984 downloads
Command Executor 0.2

Command Executor 0.2


Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. more>>
Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. Sometimes it is useful to execute some external commands (e.g. shutdown) when playing reached a certain place (e.g. end of album).

This script does the job. If amaroK starts playing a track from the "Shell Command" album, this script executes the comment tag of the track as a shell command.

You need some prepared audio files, with correctly filled tags. There are three .ogg files enclosed for stop playing, shutdown and hibernate the computer.

<<less
Download (0.005MB)
Added: 2006-03-06 License: GPL (GNU General Public License) Price:
1330 downloads
Missile Command 1.0.1

Missile Command 1.0.1


Missile Command project is a game in which you have to save your city from nuclear doom. more>>
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.

<<less
Download (0.20MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1088 downloads
Penguin Command 1.6.10

Penguin Command 1.6.10


Penguin Command is a clone of the classic Missile Command Game, but it has better graphics and music. more>>
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.
Enhancements:
- fixed a possible freeze in Help/Options menu
<<less
Download (1.1MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1410 downloads
SVK::Command::Help 1.08

SVK::Command::Help 1.08


SVK::Command::Help is a Perl module to show help. more>>
SVK::Command::Help is a Perl module to show help.

OPTIONS

Optionally svk helps can pipe through a pager, for it is easier to read if the output is too long. For using this feature, please set environment variable SVKPAGER to some pager program. For example:

# bash, zsh users
export SVKPAGER=/usr/bin/less

# tcsh users
setenv SVKPAGER /usr/bin/less

<<less
Download (0.26MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Devel::Command::NewF 0.02

Devel::Command::NewF 0.02


Devel::Command::NewF is a Perl module with the extended f command for the debugger. more>>
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 perl5db.pl version 1.27
Editor support available.

Enter h or `h h for help, or `man perldebug for more help.

main::(-e:1): 0
DB< 1 > fx Test::More
Loaded Test::More
auto(-1) DB< 2 > f /home/y/lib/perl5/5.8/i386-freebsd-thread-multi/Test/More.pm
1 package Test::More;
2
3: use 5.004;
4
5: use strict;
6
7
8 # Cant use Carp because it might cause use_ok() to accidentally succeed 9 # even though the module being used forgot to use Carp. Yes, this
10 # actually happened.
DB< 3 >

This module extends the debuggers f command so that you can simply enter the standard module name to switch the debugger to it:

DB< 1 > fx My::Module

This would look for My::Module in %INC; if it was not found, we would attempt to use the module. If this also fails, we give up, with an error message.

<<less
Download (0.005MB)
Added: 2007-01-12 License: Perl Artistic License Price:
1015 downloads
Remote Secure Command System 1.0

Remote Secure Command System 1.0


Remote Secure Command System is a remote asynchronous and secure command system based on a file configuration. more>>
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.
<<less
Download (0.040MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1146 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5