Add scripts, configurations, docs from borgcube

This commit is contained in:
Martin Blazik
2020-08-13 11:06:41 +02:00
parent fd7e36a457
commit 7f8b5ae43b
15 changed files with 207 additions and 3 deletions

9
bin/tss Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
from sys import stdin, stdout
from time import time
start = time()
for line in stdin:
stamp = time() - start
stdout.write(f"{stamp:0.6f} {line}")