From: "Ryan C." Date: 2011-02-23T11:27:01+09:00 Subject: Show text from text file in cgi script I am writing a cgi script to pull the contents of a .txt file in the cgi-bin directory into the body of an html file and can't seem to figure it out. eruby seems to be a solution, but I can't tell if it's to be used with Rails or not and the documentation is lacking for a newbie. Here's what I've got: [code] #!/usr/local/bin/ruby # SCRIPT hello_world.cgi # CREATOR: Ryan Clark puts "Content-type: text/html" puts #This line left intentionally blank puts < Oliver Twist <% File.open("oliver_twist.txt").each { |line| puts line } %> HTML [/code] -- Posted via http://www.ruby-forum.com/.