本文简要介绍ruby语言中 Etc.getpwuid
的用法。
用法
getpwuid(uid) → Passwd
返回具有给定整数 uid
的用户的 /etc/passwd 信息。
该信息作为 Passwd
结构返回。
如果省略uid
,则返返回自Passwd[:uid]
的值。
有关更多详细信息,请参见getpwuid(3)
的 unix 手册页。
例子:
Etc.getpwuid(0)
#=> #<struct Etc::Passwd name="root", passwd="x", uid=0, gid=0, gecos="root",dir="/root", shell="/bin/bash">
相关用法
- Ruby Etc.getpwnam用法及代码示例
- Ruby Etc.getgrnam用法及代码示例
- Ruby Etc.getgrgid用法及代码示例
- Ruby Etc.getlogin用法及代码示例
- Ruby Etc.group用法及代码示例
- Ruby Etc.sysconf用法及代码示例
- Ruby Etc.passwd用法及代码示例
- Ruby Etc.confstr用法及代码示例
- Ruby Etc.nprocessors用法及代码示例
- Ruby Etc.uname用法及代码示例
- Ruby Etc模块用法及代码示例
- Ruby ERB.location=用法及代码示例
- Ruby Enumerable.any?用法及代码示例
- Ruby Enumerable min_by()用法及代码示例
- Ruby Enumerable each_witth_object()用法及代码示例
- Ruby ErrorHighlight.spot用法及代码示例
- Ruby Enumerable.slice_before用法及代码示例
- Ruby Enumerable each_cons()用法及代码示例
- Ruby Enumerator each_with_index用法及代码示例
- Ruby Encoding.compatible?用法及代码示例
- Ruby Enumerable.uniq用法及代码示例
- Ruby Enumerator each_with_object用法及代码示例
- Ruby ERBIO类用法及代码示例
- Ruby ENV.empty?用法及代码示例
- Ruby Enumerable uniq()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Etc.getpwuid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。