# File lib/specinfra/command/base/file.rb, line 148
    def change_mode(file, mode, options = {})
      option = '-R' if options[:recursive]
      "chmod #{option} #{mode} #{escape(file)}".squeeze(' ')
    end