2021-02-03 11:40:48 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""Prepends a relative timestamp to each input line from stdin and writes it to stdout."""
|
|
|
|
|
2023-11-23 13:53:10 +00:00
|
|
|
from __future__ import annotations
|
2021-02-03 11:40:48 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""Main program entry point."""
|
|
|
|
start = time.time()
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
sys.stdin.reconfigure(errors="surrogateescape")
|
|
|
|
sys.stdout.reconfigure(errors="surrogateescape")
|
2021-02-03 11:40:48 +00:00
|
|
|
|
|
|
|
for line in sys.stdin:
|
|
|
|
seconds = time.time() - start
|
2023-06-27 09:50:13 +00:00
|
|
|
sys.stdout.write("%02d:%02d %s" % (seconds // 60, seconds % 60, line))
|
2021-02-03 11:40:48 +00:00
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
if __name__ == "__main__":
|
2021-02-03 11:40:48 +00:00
|
|
|
main()
|