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

  • SEARCH
  • Home
  • 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 895615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:35:12+00:00 2026-05-15T14:35:12+00:00

When you pass the :verbose flag to a FileUtils command, the command gets printed

  • 0

When you pass the :verbose flag to a FileUtils command, the command gets printed to STDOUT. Is there a way to capture the command so it can be logged or used elsewhere?

  • 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-15T14:35:13+00:00Added an answer on May 15, 2026 at 2:35 pm

    If you look at the source for FileUtils it uses the following method for doing its verbose output:

    def fu_output_message(msg)   #:nodoc:
      @fileutils_output ||= $stderr
      @fileutils_label  ||= ''
      @fileutils_output.puts @fileutils_label + msg
    end
    

    i.e. it is writing the messages to @fileutils_output and by default it is using $stderr. There doesn’t seem to be a method to alter @fileutils_output but you could add one:

    module FileUtils
      def FileUtils.fileutils_output=(new_out)
        @fileutils_output = new_out
      end
    end
    

    Then if you wanted to capture the commands into a file you could do:

    my_fu_log = open('fu_log.log', 'w')
    FileUtils.fileutils_output = my_fu_log
    # FileUtils operations with :verbose => true here
    my_fu_log.close
    FileUtils.fileutils_output = $stderr # restore writing to stderr if you want
    

    or if you wanted to get them in a string you could do:

    log = StringIO.new
    FileUtils.fileutils_output = log
    # FileUtils operations with :verbose => true here
    # commands are in log.string 
    

    Also, there is a module FileUtils::Verbose which basically includes FileUtils (so has all the same methods) but defaults the options to :verbose => true so if you wanted to capture lots of commands you could use this instead of specifying the option each time. (you would need to add the fileutils_output= method to this module in the same way as above.)

    Alternatives

    As Joshua says in the comments below, an alternative is to reassign $stderr but as he says this does mean that everything written to stderr (not just by FileUtils) is redirected. If all the FileUtils operations are happening in one go without anything else in between then this might not be an issue. So something along the lines of:

    orig_stderr = $stderr # keep reference to original stderr
    $stderr = my_fu_log
    # use FileUtils here
    $stderr = orig_stderr # restore stderr
    

    Finally, you could reopen FileUtils and override fu_output_message(msg) itself if you need more control.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 451k
  • Answers 451k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer JAXB 2. You can use it without annotations, defining mappings… May 15, 2026 at 8:45 pm
  • Editorial Team
    Editorial Team added an answer If you want to understand and learn Regex, learn to… May 15, 2026 at 8:45 pm
  • Editorial Team
    Editorial Team added an answer If you really want the user to be sure your… May 15, 2026 at 8:45 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.