8 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			119 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| BASEDIR=$(cd "$(dirname "$0")" && pwd)
 | |
| 
 | |
| for file in "${BASEDIR}"/tools.d/*.bash; do
 | |
|   bash "${file}"
 | |
| done
 |