120件ヒット
[1-100件を表示]
(0.130秒)
種類
- インスタンスメソッド (108)
- 特異メソッド (6)
- クラス (6)
ライブラリ
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
shell
/ system-command (102)
クラス
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Shell
:: SystemCommand (96)
検索結果
先頭5件
-
Shell
:: SystemCommand (24000.0) -
-
Shell
:: SystemCommand # terminate -> () (18200.0) -
@todo
...@todo... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (9301.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
:: SystemCommand # active? -> bool (9100.0) -
@todo
...@todo... -
Shell
:: SystemCommand # input=(inp) (9100.0) -
@todo
...@todo... -
Shell
:: SystemCommand # notify(*opts) -> String (9100.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Shell
:: SystemCommand # notify(*opts) {|message| . . . } -> String (9100.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Shell
:: SystemCommand # start -> () (9100.0) -
@todo
...@todo... -
Shell
:: SystemCommand # start _ export (9100.0) -
@todo
...@todo... -
Shell
:: SystemCommand # start _ import -> () (9100.0) -
@todo
...@todo... -
Shell
:: SystemCommand # wait? -> bool (9100.0) -
@todo
...@todo... -
Shell
# system(command , *opts) -> Shell :: SystemCommand (6301.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
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (6301.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
:: SystemCommand # command -> String (6100.0) -
@todo
...@todo
コマンド名を返します。... -
Shell
:: SystemCommand # kill(signal) -> Integer (6100.0) -
自身のプロセスにシグナルを送ります。
自身のプロセスにシグナルを送ります。
@param signal シグナルを整数かその名前の文字列で指定します。
負の値を持つシグナル(あるいはシグナル名の前に-)を指定すると、
プロセスではなくプロセスグループにシグナルを送ります。
@see Process.#kill -
Shell
:: SystemCommand # name -> String (6100.0) -
@todo
...@todo
コマンド名を返します。... -
Shell
:: SystemCommand . new(sh , command , *opts) (6100.0) -
@todo
...@todo
@param sh
@param command
@param opts...