summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2021-10-16 16:32:53 +0200
committerMartin Fischer <martin@push-f.com>2021-10-16 18:33:57 +0200
commit40690d6e1f87fe73bdc999b48c0caa05499396eb (patch)
tree937f1b205ad8bbc0b7e2d143a75b8434f37b7542
parent40ab2310a30d7347cb5e50dc81c3be0a77088e88 (diff)
add blockpipe
-rwxr-xr-xblockpipe16
1 files changed, 16 insertions, 0 deletions
diff --git a/blockpipe b/blockpipe
new file mode 100755
index 0000000..dba4f45
--- /dev/null
+++ b/blockpipe
@@ -0,0 +1,16 @@
+#!/usr/bin/env python3
+
+import re
+import sys
+import subprocess
+
+print(
+ re.sub(
+ r"^(```+)\$ (.*)\n((?:.+\n)*)\1$",
+ lambda m: subprocess.check_output(
+ m.group(2), input=m.group(3), shell=True, encoding="utf-8"
+ ),
+ sys.stdin.read(),
+ flags=re.MULTILINE,
+ )
+)