るりまサーチ (Ruby 2.3.0)

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

別のキーワード

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

キーワード

検索結果

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

@todo

@todo

コマンド名を返します。

Shell::SystemCommand#kill(signal) -> Integer (45304.0)

自身のプロセスにシグナルを送ります。

自身のプロセスにシグナルを送ります。

@param signal シグナルを整数かその名前の文字列で指定します。
負の値を持つシグナル(あるいはシグナル名の前に-)を指定すると、
プロセスではなくプロセスグループにシグナルを送ります。

@see Process.#kill

Shell::SystemCommand#flush -> () (36304.0)

@todo

@todo

Shell::SystemCommand#name -> String (36007.0)

@todo

@todo

コマンド名を返します。

Shell::SystemCommand#active? -> bool (27304.0)

@todo

@todo

絞り込み条件を変える

Shell::SystemCommand#each(rs = nil) {|line| ... } (27304.0)

@todo

@todo

@param rs

Shell::SystemCommand#wait? -> bool (27304.0)

@todo

@todo

Shell::SystemCommand#input=(inp) (27004.0)

@todo

@todo

Shell::SystemCommand#notify(*opts) -> String (27004.0)

@todo

@todo

@param opts

@see Shell#notify

Shell::SystemCommand#notify(*opts) {|message| ... } -> String (27004.0)

@todo

@todo

@param opts

@see Shell#notify

絞り込み条件を変える

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

@todo

@todo

Shell::SystemCommand#start_export (27004.0)

@todo

@todo

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

@todo

@todo

Shell::SystemCommand#super_each -> () (27004.0)

@todo

@todo

Shell::Filter#each です。

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

@todo

@todo

絞り込み条件を変える

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

command を実行する.

command を実行する.

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

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

使用例:

require 'shell'
Shell.verbose = false
sh = Shell.new

print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT

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

command を実行する.

command を実行する.

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

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

使用例:

require 'shell'
Shell.verbose = false
sh = Shell.new

print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT

Shell::Filter#system(command, *opts) -> Shell::SystemCommand (10345.0)

command を実行する.

command を実行する.

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

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

使用例:

require 'shell'
Shell.verbose = false
sh = Shell.new

print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT