# File lib_core/rucy/priv.rb, line 28
    def gid(group)
      case (group)
      when Numeric
        return group
      else
        return @Etc.getgrnam(group).gid
      end
    end