Advertisement
magician11

Untitled

Nov 1st, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.14 KB | None | 0 0
  1. File.open(ARGV[0],"r").each do |line|
  2.     if(line.include? "|" and not line.include? "title")
  3.         puts line.split("|")[1].strip
  4.     end
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement