Skip to content

Instantly share code, notes, and snippets.

@knudmoeller
Created January 3, 2020 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knudmoeller/0cd135731413ef035f5420dbcb791b9e to your computer and use it in GitHub Desktop.
Save knudmoeller/0cd135731413ef035f5420dbcb791b9e to your computer and use it in GitHub Desktop.
Unescape URI-escaped file line by line to STDOUT
require 'cgi'
filename = ARGV[0]
File.open(filename).each { |line| puts CGI.unescape(line) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment