mirror of
				https://github.com/Stunkymonkey/dotfiles.git
				synced 2025-10-31 02:12:10 +01:00 
			
		
		
		
	 16aad7f4c5
			
		
	
	
		16aad7f4c5
		
	
	
	
	
		
			
			Convert all shebangs to /usr/bin/env bash, if bash is really required in the script. Otherwise convert it to /bin/sh. /bin/bash is not available on all systems, while /usr/bin/env bash and /bin/sh are.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			103 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			103 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| for profile in ~/.profile.d/*.sh; do
 | |
| 	if [ -x "$profile" ]; then
 | |
| 		source $profile
 | |
| 	fi
 | |
| done
 |