本文簡要介紹ruby語言中 Etc.confstr
的用法。
用法
confstr(p1)
使用 confstr() 返回係統配置變量。
name
應該是 Etc
下的常數,它以 CS_
開頭。
返回值是字符串或 nil。 nil 表示沒有 configuration-defined 值。 (confstr() 返回 0 但未設置 errno。)
Etc.confstr(Etc::CS_PATH) #=> "/bin:/usr/bin"
# GNU/Linux
Etc.confstr(Etc::CS_GNU_LIBC_VERSION) #=> "glibc 2.18"
Etc.confstr(Etc::CS_GNU_LIBPTHREAD_VERSION) #=> "NPTL 2.18"
相關用法
- Ruby Etc.getgrnam用法及代碼示例
- Ruby Etc.getgrgid用法及代碼示例
- Ruby Etc.sysconf用法及代碼示例
- Ruby Etc.passwd用法及代碼示例
- Ruby Etc.nprocessors用法及代碼示例
- Ruby Etc.getpwnam用法及代碼示例
- Ruby Etc.uname用法及代碼示例
- Ruby Etc.group用法及代碼示例
- Ruby Etc.getpwuid用法及代碼示例
- Ruby Etc.getlogin用法及代碼示例
- 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.confstr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。