NAME
IPC::Open3::Callback::Command - A utility class that provides subroutines for building shell command strings.
VERSION
version 1.05
SYNOPSIS
use IPC::Open3::Callback::Command qw(command batch_command mkdir_command pipe_command rm_command sed_command);
my $command = command( 'echo' ); # echo
# ssh foo "echo"
$command = command( 'echo', {hostname=>'foo'} );
# ssh bar@foo "echo"
$command = command( 'echo', {username=>'bar',hostname=>'foo'} );
# plink -l bar foo "echo"
$command = command( 'echo', {username=>'bar',hostname=>'foo',ssh=>'plink'} );
# cd foo;cd bar
$command = batch_command( 'cd foo', 'cd bar' );
# ssh baz "cd foo;cd bar"
$command = batch_command( 'cd foo', 'cd bar', {hostname=>'baz'} );
# ssh baz "sudo cd foo;sudo cd bar"
$command = batch_command( 'cd foo', 'cd bar', {hostname=>'baz',command_prefix=>'sudo '} );
# ssh baz "mkdir -p \"foo\" \"bar\""
$command = mkdir_command( 'foo', 'bar', {hostname=>'baz'} );
# cat abc|ssh baz "dd of=def"
$command = pipe_command(
'cat abc',
command( 'dd of=def', {hostname=>'baz'} )
);
# ssh fred@baz "sudo -u joe rm -rf \"foo\" \"bar\""
$command = rm_command( 'foo', 'bar', {username=>'fred',hostname=>'baz',command_prefix=>'sudo -u joe '} );
# sed -e 's/foo/bar/'
$command = sed_command( 's/foo/bar/' );
# curl http://www.google.com|sed -e 's/google/gaggle/g'|ssh fred@baz "sudo -u joe dd of=\"/tmp/gaggle.com\"";ssh fred@baz "sudo -u joe rm -rf \"/tmp/google.com\"";
$command = batch_command(
pipe_command(
'curl http://www.google.com',
sed_command( {replace_map=>{google=>'gaggle'}} ),
command( 'dd of="/tmp/gaggle.com"', {username=>'fred',hostname=>'baz',command_prefix=>'sudo -u joe '} )
),
rm_command( '/tmp/google.com', {username=>'fred',hostname=>'baz',command_prefix=>'sudo -u joe '})
);
DESCRIPTION
The subroutines exported by this module can build shell command strings that can be executed by IPC::Open3::Callback, IPC::Open3::Callback::CommandRunner, ``, system(), or even plain old open 1, 2, or 3. There is not much point to shelling out for commands locally as there is almost certainly a perl function/library capable of doing whatever you need in perl code. However, If you are designing a footprintless agent that will run commands on remote machines using existing tools (gnu/powershell/bash...) these utilities can be very helpful. All functions in this module can take a \%destination_options
hash defining who/where/how to run the command.
OPTIONS
All commands can be supplied with \%destination_options
. destination_options
control who/where/how to run the command. The supported options are:
- ssh
-
The ssh command to use, defaults to
ssh
. You can use this to specify other commands likeplink
for windows or an implementation ofssh
that is not in your path. - command_prefix
-
As it sounds, this is a prefix to your command. Mainly useful for using
sudo
. This prefix is added like this$command_prefix$command
so be sure to put a space at the end of your prefix unless you want to modify the name of the command itself. For example,$command_prefix = 'sudo -u priveleged_user ';
. - username
-
The username to
ssh
with. If usingssh
, this will result in,ssh $username@$hostname
but if usingplink
it will result inplink -l $username $hostname
. - hostname
-
The hostname/IP of the server to run this command on. If localhost, and no username is specified, the command will not be wrapped in
ssh
FUNCTIONS
command( $command, \%destination_options )
This wraps the supplied command with all the destination options. If no options are supplied, $command is returned.
batch_command( $command1, $command2, ..., $commandN, \%destination_options )
This will join all the commands with a ;
and apply the supplied \%destination_options
to the result.
mkdir_command( $path1, $path2, ..., $pathN, \%destination_options )
Results in mkdir -p $path1 $path2 ... $pathN
with the \%destination_options
applied.
pipe_command( $command1, $command2, ..., $commandN, \%destination_options )
Identical to batch_command except uses \|
to separate the commands instead of ;
.
sed_command( $expression1, $expression2, ..., $expressionN, \%destination_options )
Constructs a sed command
- files
-
An arrayref of files to apply the sed expressions to. For use when not piping from another command.
- in_place
-
If specified, the
-i
option will be supplied tosed
thus modifying the file argument in place. Not useful for piping commands together, but can be useful if you copy a file to a temp directory, modify it in place, then transfer the file and delete the temp directory. It would be more secure to follow this approach when using sed to fill in passwords in config files. For example, if you wanted to use sed substitions to set passwords in a config file template and then transfer that config file to a remote server:/my/config/passwords.cfg
app1.username=foo app1.password=##APP1_PASSWORD## app2.username=bar app2.password=##APP2_PASSWORD##
deploy_passwords.pl
use IPC::Open3::Callback::Command qw(batch_command command pipe_command sed_command); use IPC::Open3::Callback::CommandRunner; use File::Temp; my $temp_dir = File::Temp->newdir(); my $temp_script_file = File::Temp->new(); IPC::Open3::Callback::CommandRunner->new()->run_or_die( batch_command( "cp /my/config/passwords.cfg $temp_dir->filename()/passwords.cfg", sed_command( "s/##APP1_PASSWORD##/set4app1/g", "s/##APP2_PASSWORD##/set4app2/g", { in_place=>1, temp_script_file=>$temp_script_file, files=>[$temp_dir->filename()/passwords.cfg] } ), pipe_command( "cat $temp_dir->filename()/passwords.cfg", command( "dd of='/remote/config/passwords.cfg'", {hostname=>'remote_host'} ) ); ) );
- replace_map
-
A map used to construct a sed expression where the key is the match portion and the value is the replace portion. For example:
{'key'=>'value'}
would result in's/key/value/g'
. - temp_script_file
-
Specifies a file to write the sed script to rather than using the console. This is useful for avoiding generating commands that would get executed in the console that have protected information like passwords. If passwords are issued on the console, they might show up in the command history...
AUTHORS
Lucas Theisen <lucastheisen@pastdev.com>
Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Lucas Theisen.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
SEE ALSO
Please see those modules/websites for more information related to this module.