mirror of
				https://github.com/docker/compose.git
				synced 2025-10-31 11:14:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			299 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python
 | |
| from __future__ import absolute_import
 | |
| from __future__ import print_function
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| import datetime
 | |
| import os.path
 | |
| import sys
 | |
| 
 | |
| os.environ['DATE'] = str(datetime.date.today())
 | |
| 
 | |
| for line in sys.stdin:
 | |
|     print(os.path.expandvars(line), end='')
 |