10 lines
		
	
	
		
			102 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			102 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [ -z "$1" ]; then
 | |
|     bash
 | |
| else
 | |
|     echo "Running $1"
 | |
|     set -ex
 | |
|     bash -c "$1"
 | |
| fi
 | 
