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