Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7691417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T20:37:06+00:00 2026-05-31T20:37:06+00:00

I have this ruby script that allows me to enter the name of a

  • 0

I have this ruby script that allows me to enter the name of a pdf file which will then look for the file in a folder and open it up. Except I have to be pretty precise about my input. For example:

Enter the name of the pdf file you would like to open.
> Survival Manual

The above line opens the book if the file is named exactly as I typed it, but lets say I want to just type

> Survival

It won’t open it up. So I have the following code:

docs = Dir.entries("/Documents")     #=> ["Survival Manual.pdf", "Military Manual.pdf"]

input = gets.chomp                             #=> "Survival"

select_doc = docs.grep(Regexp.new(input))      #=> ["Survival Manual.pdf"]

system("open", "/Documents/#{select_doc[0]}") 

And the last line finally opens the pdf. This code seems convoluted and I know it can be done a lot better and if so, is there something I’m missing? Could I have used better methods? After several attempts to refactor this code it seemed like it only got worse. Ruby is great language I’d like to be able to do things right, and maybe those new to ruby (like me) can take something from this. Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T20:37:07+00:00Added an answer on May 31, 2026 at 8:37 pm
    input = gets.chomp.delete '/'
    system('open', Dir["Documents/#{input}*.pdf"].first)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple Ruby script that looks like this require 'csv' while line
I have a ruby script that downloads URLs from an RSS server and then
I have a ruby script that executes another ruby script via backticks. Like this:
I'm trying this in ruby. I have a shell script to which I can
I have a Ruby script that generates a UTF8 CSV file remotely in a
I have a ruby application that executes ant as a subprocess using backtick. This
I have a Ruby script that outputs a heap of text. As an example:
I have a Ruby script that I built in TextMate and can successfully run
So I have a script in ruby that obviously uses variables. Part of the
I have a ruby script that loops through a list of shortened urls (around

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.