るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
20件ヒット [1-20件を表示] (0.036秒)
トップページ > クエリ:command[x] > バージョン:2.5.0[x] > ライブラリ:shell[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 (72307.0)

@todo

@todo

コマンド名を返します。

Shell::SystemCommand (72004.0)

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

@param sh

@param command

@param opts

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

@param rs

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

@todo

@todo

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

@todo

@todo

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

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

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

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

@see Process.#kill

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

@todo

...@todo

@param opts

@see Shell#notify...

絞り込み条件を変える

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

@todo

...@todo

@param opts

@see Shell#notify...

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

@todo

@todo

Shell::SystemCommand#start_export (18004.0)

@todo

@todo

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

@todo

@todo

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

@todo

...@todo

Shell
::Filter#each です。...

絞り込み条件を変える

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

@todo

@todo

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

@todo

@todo

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

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 (1015.0)

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 (1012.0)

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...

絞り込み条件を変える