NAME

Rex::Commands::Run

DESCRIPTION

With this module you can run a command.

SYNOPSIS

my $output = run "ls -l";

EXPORTED FUNCTIONS

run($command)

This function will execute the given command and returns the output.

task "uptime", "server01", sub {
   say run "uptime";
};