Sign in
android
/
platform
/
frameworks
/
support
/
aa5dc8885748bcc3ed3f688e806ea52efb6c3aa0
/
.
/
development
/
ts.py
blob: f4c54d9ae3e683dff35be818bfc80ff04d885571 [
file
] [
log
] [
blame
]
#!/usr/bin/python3
# This program reads stdin, prepends the current time to each line, and prints the result
from
datetime
import
datetime
import
sys
for
line
in
sys
.
stdin
:
now
=
datetime
.
now
()
print
(
str
(
now
)
+
" "
+
line
,
end
=
""
)