mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 00:06:05 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			181 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			181 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- read environment variables as if they were global variables
 | |
| 
 | |
| local f=function (t,i) return os.getenv(i) end
 | |
| setmetatable(getfenv(),{__index=f})
 | |
| 
 | |
| -- an example
 | |
| print(a,USER,PATH)
 | 
