るりまサーチ (Ruby 2.3.0)

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

別のキーワード

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

検索結果

Shell::SystemCommand (63001.0)

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

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

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

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

@see Process.#kill

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

@param rs

絞り込み条件を変える

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

@todo

@todo

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

@param opts

@see Shell#notify

絞り込み条件を変える

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

@todo

@todo

@param opts

@see Shell#notify

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

@todo

@todo

Shell::SystemCommand#start_export (18001.0)

@todo

@todo

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

@todo

@todo

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

@todo

@todo

Shell::Filter#each です。

絞り込み条件を変える

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

@todo

@todo

Shell::SystemCommand.new(sh, command, *opts) (18001.0)

@todo

@todo

@param sh

@param command

@param opts

Shell#system(command, *opts) -> Shell::SystemCommand (9640.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::CommandProcessor#system(command, *opts) -> Shell::SystemCommand (9640.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 (9640.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

絞り込み条件を変える