Subversion Repositories sysadmin_scripts

Rev

Rev 168 | Rev 170 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 168 Rev 169
Line 201... Line 201...
201
#print Dumper( $config ); die;
201
#print Dumper( $config ); die;
202
 
202
 
203
my $commands = &createCommands( $config );
203
my $commands = &createCommands( $config );
204
for ( my $i = 0; $i < @{$commands}; $i++ ) {
204
for ( my $i = 0; $i < @{$commands}; $i++ ) {
205
   print "$$commands[$i]\n";
205
   print "$$commands[$i]\n";
206
   #qx/$$commands[$i]/;
206
   print qx/$$commands[$i]/ if $$commands[$i] =~ m/^[a-zA-Z]/;
207
}
207
}
208
 
208
 
209
#print Dumper( $config );
209
#print Dumper( $config );
210
 
210
 
211
1;
211
1;
212
 
212