14 lines
243 B
Perl
Executable File
14 lines
243 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
(my $hostname, my $job) = @ARGV;
|
|
|
|
# output is written to the log
|
|
print "preJobCommandRemote script prescriptRemote-sample.pl\n";
|
|
print "hostname=$hostname\n";
|
|
print "job=$job\n";
|
|
system("ls -l /var");
|
|
|
|
exit 0;
|