public Method

FileUtils.ln_sf(src, dest, options = {})

Options: noop verbose

Same as

#ln_s(src, dest, :force)

Source Code

# File fileutils.rb, line 355
def ln_sf(src, dest, options = {})
  fu_check_options options, OPT_TABLE['ln_sf']
  options = options.dup
  options[:force] = true
  ln_s src, dest, 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.