るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. shell/builtin-command new
  2. shell/builtin-command each
  3. rubygems/command command
  4. irb/extend-command def_extend_command
  5. irb/extend-command install_extend_commands

検索結果

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

@todo

@todo

コマンド名を返します。

Shell::SystemCommand (72001.0)

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

@param sh

@param command

@param opts

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

@param rs

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

@todo

@todo

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

@todo

@todo

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

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

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

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

@see Process.#kill

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#wait? -> bool (18001.0)

@todo

@todo

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

絞り込み条件を変える