blob: c0ccc0adf190d97fb4f9285f7fd0343171ae16fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env 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
|