summaryrefslogtreecommitdiff
path: root/htmlentities
diff options
context:
space:
mode:
Diffstat (limited to 'htmlentities')
-rwxr-xr-xhtmlentities14
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
+