42件ヒット
[1-42件を表示]
(0.075秒)
種類
- インスタンスメソッド (30)
- 特異メソッド (12)
ライブラリ
- ビルトイン (24)
- pathname (12)
-
shell
/ command-processor (6)
クラス
- File (12)
-
File
:: Stat (12) - Pathname (12)
-
Shell
:: CommandProcessor (6)
検索結果
先頭4件
-
File
:: Stat # setgid? -> bool (21107.0) -
setgidされている時に真を返します。
...setgidされている時に真を返します。
//emlist[][ruby]{
Dir.glob("/usr/sbin/*") {|bd|
if File::Stat.new(bd).setgid?
puts bd
end
}
#例
#...
#=> /usr/sbin/postqueue
#...
//}... -
Pathname
# setgid? -> bool (21101.0) -
FileTest.setgid?(self.to_s) と同じです。
...FileTest.setgid?(self.to_s) と同じです。
@see FileTest.#setgid?... -
Shell
:: CommandProcessor # setgid?(file) -> bool (21100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#setgid?... -
File
. setgid?(path) -> bool (18200.0) -
FileTest.#setgid? と同じです。
...FileTest.#setgid? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。...