Help for this page

Select Code to Download


  1. or download this
    my $command = 'cat /etc/passwd';
    for my $machine (@machines) {
        my @output = `ssh '$machine' $command`;
        ...
    }