public Method

FileUtils.rm_f(list, options = {})

Options: noop verbose

Equivalent to

#rm(list, :force => true)

Source Code

# File fileutils.rb, line 567
def rm_f(list, options = {})
  fu_check_options options, OPT_TABLE['rm_f']
  options = options.dup
  options[:force] = true
  rm list, options
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.