2015-10-07 02:50:40 +02:00
|
|
|
#!/usr/bin/env python
|
2015-10-30 21:22:51 +01:00
|
|
|
from __future__ import absolute_import
|
2015-10-30 21:50:31 +01:00
|
|
|
from __future__ import print_function
|
2015-10-30 21:22:51 +01:00
|
|
|
from __future__ import unicode_literals
|
2015-10-22 02:13:43 +02:00
|
|
|
|
2015-10-07 02:50:40 +02:00
|
|
|
import datetime
|
|
|
|
import os.path
|
|
|
|
import sys
|
|
|
|
|
|
|
|
os.environ['DATE'] = str(datetime.date.today())
|
|
|
|
|
|
|
|
for line in sys.stdin:
|
2015-10-22 02:13:43 +02:00
|
|
|
print(os.path.expandvars(line), end='')
|