diff options
Diffstat (limited to 'to-ascii')
-rwxr-xr-x | to-ascii | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/to-ascii b/to-ascii new file mode 100755 index 0000000..10fd1c2 --- /dev/null +++ b/to-ascii @@ -0,0 +1,12 @@ +#!/usr/bin/env ruby + +while line = STDIN.gets + encoding_options = { + :invalid => :replace, + :undef => :replace, + :replace => '?', + :universal_newline => true + } + puts line.encode 'ASCII', encoding_options +end + |