mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-10-31 06:37:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			303 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			303 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env perl
 | |
| 
 | |
| use warnings;
 | |
| use strict;
 | |
| 
 | |
| package sh;
 | |
| use parent '_default';
 | |
| 
 | |
| sub initialize {
 | |
|   my ($self, %conf) = @_;
 | |
| 
 | |
|   $self->{sourcefile}      = 'prog.sh';
 | |
|   $self->{execfile}        = 'prog.sh';
 | |
|   $self->{default_options} = '';
 | |
|   $self->{cmdline}         = 'sh $options $sourcefile';
 | |
| }
 | |
| 
 | |
| 1;
 | 
