diff options
author | Patrick Simianer <p@simianer.de> | 2016-07-05 11:01:46 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-07-05 11:01:46 +0200 |
commit | 2b1d7f881c19c4d4b5afae194e02d3300c7675d0 (patch) | |
tree | 5a06ee7de98640a39244b57bb369697176b44ebf /to_ascii | |
parent | 69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (diff) |
mv
Diffstat (limited to 'to_ascii')
-rwxr-xr-x | to_ascii | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/to_ascii b/to_ascii deleted file mode 100755 index 10fd1c2..0000000 --- a/to_ascii +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 - |