smeserver-affa/root/etc/affa/scripts/postscriptRemote-sample.pl

14 lines
237 B
Perl
Executable File

#!/usr/bin/perl -w
use strict;
(my $hostname, my $job) = @ARGV;
# output is written to the log
print "postJobCommandRemote script postscriptRemote-sample.pl\n";
print "hostname=$hostname\n";
print "job=$job\n";
system("df");
exit 0;