mirror of
				https://github.com/Stunkymonkey/dotfiles.git
				synced 2025-10-31 10:22:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			132 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| for profile in ~/.profile.d/*.sh; do
 | |
| 	if [ -x "$profile" ]; then
 | |
| 		# shellcheck source=/dev/null
 | |
| 		. "$profile"
 | |
| 	fi
 | |
| done
 | 
