It can be done by calling getpwnam(3)
and getgrnam(3)
.
require 'etc'
Etc.getpwnam('root').uid # => 0
Etc.getgrnam('nogroup').gid # => 65534
For more information, please see the documentation Etc module.
It can be done by calling getpwnam(3)
and getgrnam(3)
.
require 'etc'
Etc.getpwnam('root').uid # => 0
Etc.getgrnam('nogroup').gid # => 65534
For more information, please see the documentation Etc module.