From db6a6ecfa350cae29739c59df1210d8f76a479c9 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Thu, 5 Dec 2013 07:56:38 +0100 Subject: init --- htmlentities | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 htmlentities (limited to 'htmlentities') 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 + -- cgit v1.2.3