# File lib/specinfra/command/freebsd/base/group.rb, line 7
    def add(group, options)
      command = %w[pw group add]
      command << escape(group)
      command << '-g' << escape(options[:gid])  if options[:gid]
      command.join(' ')
    end