るりまサーチ

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

別のキーワード

  1. systemcommand notify
  2. systemcommand name
  3. systemcommand start
  4. systemcommand each

キーワード

検索結果

<< 1 2 > >>

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

コマンド名を返します。

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

@todo

@todo

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

@todo

@todo

@param rs

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

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

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

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

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

@see Process.#kill

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

@todo

@todo

@param opts

@see Shell#notify

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

@todo

@todo

@param opts

@see Shell#notify

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

@todo

@todo

絞り込み条件を変える

Shell::SystemCommand#start_export (6001.0)

@todo

@todo

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

@todo

@todo

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

@todo

@todo

Shell::Filter#each です。

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

@todo

@todo

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

@todo

@todo

絞り込み条件を変える

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

command を実行する.

...
command
を実行する.

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

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

使用例:

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

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

command を実行する.

...
command
を実行する.

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

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

使用例:

require '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 > >>