aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/remove-padding6
-rwxr-xr-xbin/unwrap6
2 files changed, 12 insertions, 0 deletions
diff --git a/bin/remove-padding b/bin/remove-padding
new file mode 100755
index 0000000..9c5f41e
--- /dev/null
+++ b/bin/remove-padding
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+import sys
+
+for line in sys.stdin:
+ sys.stdout.write(line.strip() + '\n')
diff --git a/bin/unwrap b/bin/unwrap
new file mode 100755
index 0000000..ffcc5e1
--- /dev/null
+++ b/bin/unwrap
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+import sys
+
+for line in sys.stdin:
+ sys.stdout.write(line.strip())
nihil fit ex nihilo