read file and print contents - beginner

  • Thread starter Johnathan Smith
  • Start date
J

Johnathan Smith

hello,

im new to ruby and i have a text file and want to read in the file
and print it out.

so far iv got the following. I'd greatly appreciate any help.

thanks.

text file (reference.txt):
Tag: ref1
Type: Book
Author: Little, S R

ruby file:
#!/usr/local/bin/ruby
#
#
# read file and print
#
ARGV.each do |fn|
begin
(fn == '-' ? STDIN : File.open(fn)).each_line do |l|
if $indent > 0
(1..$indent).each { print ' ' }
end
puts l
end
 
J

Johnathan Smith

I've changed my approach as i dont actually want to count the lines

so i now have this:

ARGV.each do |fn|
begin
(fn == 'reference.txt' ? STDIN : File.open(fn)).each_line do |l|
puts l
end

by this im trying to read in the text file and print out its contents

i seem to be getting a load error
any reason why?

thank you
 
A

Andrei Maxim

I've changed my approach as i dont actually want to count the lines

so i now have this:

ARGV.each do |fn|
begin
(fn == 'reference.txt' ? STDIN : File.open(fn)).each_line do |l|
puts l
end

ARGV.each will iterate through every parameter you pass. Since your
script is so simple, you're better of with ARGV[0]. You'd have to
check the length and see if ARGV.length == 1.

A more Ruby-like approach is this:

#!/usr/bin/env ruby -wKU

if ARGV.length != 1
puts "Syntax is: ruby readfile.rb filename"
exit
end

File.open(ARGV[0], "r") do |file|
while line = file.gets
puts line
end
end

Using File.open with a block will automatically open and close the
file handler and that's a pretty decent practice to start with.

I'd highly recommend you the PickAxe book (Programming Ruby, 2nd
edition). It does a great job explaining Ruby concepts (the code above
is just a rip-off from Mr. Thomas's example on page 129). However,
I've heard people complaining that it's a bit daunting for new
programmers. Maybe you'd feel a bit better with Learning to Program by
Chris Pine if words like "iterators" and "inheritance" make you sweat.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

printing from a file - beginner 0
Beginner: Read file 8
newbie qusetion: read a file and print out same file 3
UTF-8 read & print? 6
hash 6
hash 13
Read text file and check multiple checkbox 2
printing 1

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,175
Latest member
Vinay Kumar_ Nevatia
Top