diff options
author | Raul Benencia <raul@thousandeyes.com> | 2020-05-26 15:48:17 -0700 |
---|---|---|
committer | Raul Benencia <raul@thousandeyes.com> | 2020-05-26 15:48:17 -0700 |
commit | bf778da916ad64586aec2613238701cbed4565c8 (patch) | |
tree | 63042a05d11adc912c5c7e1c31a63d92326ab702 /bin | |
parent | 65dea73b1362ba9ce03389e2148656bfba90d566 (diff) |
add remove-padding and unwrap
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/remove-padding | 6 | ||||
-rwxr-xr-x | bin/unwrap | 6 |
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()) |