Skip to content

Instantly share code, notes, and snippets.

@Prigin
Created September 25, 2019 14:25
Show Gist options
  • Save Prigin/efce4d1782dff45b1043392642c52b87 to your computer and use it in GitHub Desktop.
Save Prigin/efce4d1782dff45b1043392642c52b87 to your computer and use it in GitHub Desktop.
final variant
doc = ARGV[0] || "movies.txt"
unless File.exist?(doc)
puts "no such file"
exit
end
print "[search]> "; search = "Max"; puts search
File.foreach(doc) do |line|
line = line.split("|")
if line[1].include?(search)
print line[1] + " | "
puts "*" * (line[7].to_f * 10 - 80)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment