9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
# Bash Subfunction
 | 
						|
 | 
						|
oldIFS=$IFS
 | 
						|
IFS=$'\n'
 | 
						|
for line in $(mdls .env); do
 | 
						|
	printf "%s "$line | cut -d '=' -f 1,2
 | 
						|
done
 | 
						|
unset IFS
 |