diff options
author | Patrick Simianer <p@simianer.de> | 2013-12-05 07:56:38 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2013-12-05 07:56:38 +0100 |
commit | db6a6ecfa350cae29739c59df1210d8f76a479c9 (patch) | |
tree | f137a001f57f170455c28ce97b5abb2726006cf6 /htmlentities |
init
Diffstat (limited to 'htmlentities')
-rwxr-xr-x | htmlentities | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/htmlentities b/htmlentities new file mode 100755 index 0000000..ecbee3f --- /dev/null +++ b/htmlentities @@ -0,0 +1,14 @@ +#!/usr/bin/ruby + +require 'htmlentities' + + +STDIN.set_encoding 'utf-8' +STDOUT.set_encoding 'utf-8' + +coder = HTMLEntities.new + +while line = STDIN.gets + puts coder.decode(line.strip) +end + |