るりまサーチ

最速Rubyリファレンスマニュアル検索!
564件ヒット [1-100件を表示] (0.115秒)

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. t61string new
  4. matrix t
  5. fiddle type_size_t

キーワード

検索結果

<< 1 2 3 ... > >>

Shell::SystemCommand#command -> String (24303.0)

@todo

...@todo

コマンド名を返します。...

Shell::SystemCommand#terminate -> () (24302.0)

@todo

...@todo...

Shell::SystemCommand#start_export (21302.0)

@todo

...@todo...

Shell::SystemCommand#start_import -> () (21302.0)

@todo

...@todo...

Shell::ProcessController#terminate_job(command) (18409.0)

指定されたコマンドを終了します。

...指定されたコマンドを終了します。

@param command コマンドを指定します。...

絞り込み条件を変える

Shell::CommandProcessor#find_system_command(command) (18304.0)

@todo

...@todo...

Shell::Filter#find_system_command(command) (18304.0)

@todo

...@todo...

Shell::ProcessController#start_job(command = nil) (15309.0)

指定されたコマンドの実行を開始します。

...指定されたコマンドの実行を開始します。

コマンドを省略した場合は、待ち状態のジョブのうち先頭のものを実行します。

@param command コマンドを指定します。...

Shell::CommandProcessor#transact { ... } -> object (15208.0)

ブロック中で shell を self として実行します。

...ブロック中で shell を self として実行します。

例:

r
equire 'shell'
Shell
.def_system_command("head")
sh = Shell.new
sh.transact{
system("ls", "-l") | head > STDOUT
# transact の中では、
# sh.system("ls", "-l") | sh.head > STDOUT と同じとなる。
}...

Shell::CommandProcessor#directory?(file) -> bool (15202.0)

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

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

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

@see FileTest.#directory?...

絞り込み条件を変える

Shell::CommandProcessor#executable_real?(file) -> bool (15202.0)

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

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

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

@see FileTest.#executable_real?...

Shell::CommandProcessor#truncate(path, length) -> 0 (15202.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

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

@param length 変更したいサイズを整数で与えます。

@see File.truncate...

Shell::CommandProcessor#world_writable? (15202.0)

@todo

...@todo...

Shell::CommandProcessor#writable?(file) -> bool (15202.0)

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

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

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

@see FileTest.#writable?...

Shell::CommandProcessor#writable_real?(file) -> bool (15202.0)

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

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

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

@see FileTest.#writable_real?...

絞り込み条件を変える

Shell::SystemCommand#start -> () (15202.0)

@todo

...@todo...

Shell::CommandProcessor#system(command, *opts) -> Shell::SystemCommand (12437.0)

command を実行する.

...
command
を実行する.

@param command 実行するコマンドのパスを文字列で指定します。

@param opts command のオプションを文字列で指定します。複数可。

使用例:

r
equire 'shell'
Shell
.verbose = false
sh = Shell.new

print sh.system("ls", "-l")
S...
...hell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT...
<< 1 2 3 ... > >>