るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. ipaddr to_i

検索結果

<< 1 2 3 > >>

Gem::Specification#executable -> String (21301.0)

実行可能ファイル名を返します。

実行可能ファイル名を返します。

Kernel#find_executable(bin, path = nil) -> String | nil (12501.0)

パス path から実行ファイル bin を探します。

...ら実行ファイル bin を探します。

実行ファイルが見つかった場合は、そのフルパスを返します。
実行ファイルが見つからなかった場合は、nilを返します。

このメソッドは Makefile を変更しません。

@param bin 実行ファイルの...
...名前を指定します。

@param path パスを指定します。デフォルトは環境変数 PATH です。
環境変数 PATH が定義されていない場合は /usr/local/bin,
/usr/ucb, /usr/bin, /bin を使います。...

FileTest.#executable?(file) -> bool (9313.0)

ファイルがカレントプロセスにより実行できる時に真を返しま す。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

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

例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true...

FileTest.#executable_real?(file) -> bool (9313.0)

ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...e を返します。

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

//emlist[例][ruby]{
I
O.write("empty.txt", "")
File.chmod(0744, "empty.txt")
FileTest.executable_real?("empty.txt") # => true
File.chmod(0644, "empty.txt")
FileTest.executable_real?("empty.txt") # =>...

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

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

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

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

@see FileTest.#executable?...

絞り込み条件を変える

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

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

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

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

@see FileTest.#executable_real?...

Gem::Specification#default_executable -> String | nil (9301.0)

Gem パッケージ内で gem コマンド経由で実行するファイルを返します。

Gem パッケージ内で gem コマンド経由で実行するファイルを返します。

Gem::Specification#executables -> [String] (9300.0)

実行可能ファイル名のリストを返します。

実行可能ファイル名のリストを返します。

File.executable?(path) -> bool (9217.0)

FileTest.#executable? と同じです。

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

@param path パスを表す文字列を指定します。...

File.executable_real?(path) -> bool (9217.0)

FileTest.#executable_real? と同じです。

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

@param path パスを表す文字列を指定します。...

絞り込み条件を変える

<< 1 2 3 > >>