るりまサーチ

最速Rubyリファレンスマニュアル検索!
117件ヒット [1-100件を表示] (0.128秒)
トップページ > クエリ:l[x] > クエリ:>[x] > クエリ:setgid[x]

別のキーワード

  1. kernel $-l
  2. matrix l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

クラス

モジュール

キーワード

検索結果

<< 1 2 > >>

Process::Sys.#setgid(id) -> nil (18317.0)

システムコールの setgid(2) を呼びます。

...システムコールの setgid(2) を呼びます。

@param id システムコールの引数を整数で指定します。

@raise NotImplementedError システムコールが現在のプラットフォームで提供されていない場合に発生します。

@raise Errno::EXXX システム...

FileTest.#setgid?(file) -> bool (9329.0)

ファイルが setgid(2) されている時に真を返 します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...ファイルが setgid(2) されている時に真を返
します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

@param file ファイル名を表す文字列か IO オブジェクトを...
...指定します。

//emlist[例][ruby]{
require 'fileutils'
IO.write("testfile", "")
FileUtils.chmod("g+s", "testfile")
FileTest.setgid?("testfile") # => true
FileUtils.chmod("g-s", "testfile")
FileTest.setgid?("testfile") # => false
//}...

File::Stat#setgid? -> bool (9323.0)

setgidされている時に真を返します。

...setgidされている時に真を返します。

//emlist[][ruby]{
Dir.glob("/usr/sbin/*") {|bd|
if File::Stat.new(bd).setgid?
puts bd
end
}
#例
#...
#=> /usr/sbin/postqueue
#...
//}...

File.setgid?(path) -> bool (9317.0)

FileTest.#setgid? と同じです。

...FileTest.#setgid? と同じです。

@param path パスを表す文字列か IO オブジェクトを指定します。...

Shell#setgid?(file) -> bool (9307.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#setgid?...

絞り込み条件を変える

Shell::CommandProcessor#setgid?(file) -> bool (9307.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#setgid?...

Shell::Filter#setgid?(file) -> bool (9307.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#setgid?...

Pathname#setgid? -> bool (6323.0)

FileTest.setgid?(self.to_s) と同じです。

...FileTest.setgid?(self.to_s) と同じです。


@see FileTest.#setgid?...

Kernel.#test(cmd, file1, file2) -> bool (3308.0)

2ファイル間のファイルテストを行います。

...字列の場合はその先頭の文字だけをコマンドとみなします。
@param file1 テストするファイルのパスを表す文字列か IO オブジェクトを指定します。
@param file2 テストするファイルのパスを表す文字列か IO オブジェクトを指定し...
...?>
ファイル1の方がファイル2より最終更新時刻が新しい
: ?<
ファイル1の方がファイル2より最終更新時刻が古い
: ?-
ファイル1とファイル2が同一のファイルである

//emlist[例][ruby]{
IO.write("testfile1", "test1")
IO.write("testfile...
...2", "test2")
%w(= < > -).each do |e|
result = test(e, "testfile1", "testfile2")
puts "#{e}: #{result}"
end
//}

# => =: true
# => <: false
# => >: false
# => -: false...

Kernel.#test(cmd, file) -> bool | Time | Integer | nil (3213.0)

単体のファイルでファイルテストを行います。

...いは同じ文字を表す数値
です。文字列の場合はその先頭の文字だけをコマンドとみなします。
@param file テストするファイルのパスを表す文字列か IO オブジェクトを指定します。
@return 下表に特に明記していないも...
...ァイルサイズが 0 でない (ファイルサイズを返す、0 ならば nil) -> Integer|nil
: ?f
ファイルはプレーンファイルである
: ?d
ファイルはディレクトリである
: ?l
ファイルはシンボリックリンクである
: ?p
ファイルは名...
... setgid ビットがセットされている
: ?k
ファイルに sticky ビットがセットされている
: ?M
ファイルの最終更新時刻を返す -> Time
: ?A
ファイルの最終アクセス時刻を返す -> Time
: ?C
ファイルの inode 変更時刻を返す -> T...

絞り込み条件を変える

WEBrick::Utils.#su(user) -> () (3116.0)

指定されたユーザに Process::Sys.#setuid, Process::Sys.#setgid します。

...指定されたユーザに Process::Sys.#setuid,
Process::Sys.#setgid します。

setuid できないプラットフォームでは警告を表示し、何もしません。

@param user ユーザを指定します。...
<< 1 2 > >>